Performance Issues
Performance Optimization Java J2EE Aplications
One can optimize the performance of Java J2EE Application by considering some of the design level, system level, application level changes.
- Design level factors by following effective design patterns for a problem
- Application level considering by looking into app server tuning, coding details etc.
-identify the potential issues like memory leakage, security issues, transactional issues, extendability, maintainability [...]
Hibernate
Hibernate – It is written in java, an open source project, provides ORM (Object Relational Mapping) solution, technology for persisting data in any kind of application. Powerful object-oriented persistence, hibernate query language, the object oriented concept is similar to java for association, inheritance, polymorphism, composition and collection. It has automatic primary key generation, perists the java [...]
Read Full Post | Make a Comment ( None so far )Multi threading – performance
Multi threading – synchronization, sharing of resources multi threads access, multiple threads running in a system. One of the thread can modify shared variable while another thread is in the process of updating same shared variable. inheriting from Thread class, runnable interface. Handle multiple clients at the same time. The methods that are used for [...]
Read Full Post | Make a Comment ( None so far )

