29 Apr
Java performance is often a problem because the application processing is emulating the database which executes more efficiently or the processing is poorly designed. Either of these scenarios that my teams have found during performance or design reviews always led to extended I/O activities and excessive CPU usage.
Too often, when the application was designed, [...]
Posted in Java and DB2 by: admin
0 Comments
08 Apr
Designing the Unit-of-Work for a given transaction entails many components. Different techniques and methods are incorporated depending on the components such as Hibernate, iBatis, JPA or Enterprise Bean technology to process the transaction. The Java transaction framework and the object patterns incorporated with the components also affect the transaction unit-of-work. All these factors together provide complete [...]
Posted in Java and DB2 by: admin
0 Comments
01 Apr
Control Java Application References to the Database
One of the first standards and principles neglected in the Java applications that I have seen is that the application references the database too many times to complete a single transaction. While it is good to use your ORM database interface, the architect and application programmer should know how [...]
Posted in Java and DB2 by: admin
0 Comments