With latest J2EE 5 and EJB3 specs Sun addressed many issues. The one, which is of particular interest to this question, is application portability. Presumably, the role of descriptor files is reduced to a minimum as annotations took over; POJO-style components replaced good old EJBs which significantly reduced complexity, JNDI standards matured to be accepted across different platforms, etc. All these indicate that I can write my J2EE application once and deploy on different application servers with minimal changes. How minimal are they? What would be the list of action items/points to remember that still stand in a way when porting application from one vendor to another?
Assumptions:
- no proprietary extensions to J2EE that are specific to concrete application server vendor: application is in accordance with J2EE spec only;
- all application tiers are involved: presentation, business logic, and data tiers;
- the following services may be involved: web services, web application, JMS, data access, scheduled jobs.
