Spring is an Inversion of Control container through its bean factory concept.IoC helps in loose coupling of the code .Spring is most closely identified with a flavor of Inversion of Control known as Dependency Injection(DI).
February 2008
February 28, 2008
February 28, 2008
Check here about the Synchronization. When it to be used ? Under Collections Framework How the list to be synchronized ?
February 28, 2008
Could not find the main class. Program will exit.”
Problem : I just installed the latest available Eclipse version (3.2 milestone 5) and couldn’t run my ANT builds anymore. The error I got in the alert box was “Could not find the main class. Program will exit”.
February 25, 2008
What Influences the Performance of Application Servers?
Posted by muralis under J2EELeave a Comment
No matter which application server software you use, its performance is a critical measurement of cost-effectiveness and the end-user experience of your application. Despite the number of popular benchmarks available, no single benchmark can be used to predict the application server’s performance, which depends on a variety of factors:
February 22, 2008
Check here and read about Struts FAQ .
February 21, 2008
Statement interface represents SQL query and execution and they provide number of methods and constants to work with queries. They also provide some methods to fine tune performance. Programmer may overlook these fine tuning methods that result in poor performance. The following are the tips to improve performance by using statement interfaces
1. Choose the right Statement interface
2. Do batch update
3. Do batch retrieval using Statement
2. Close Statement when finished.