vote up 0 vote down star

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.
flag

63% accept rate

2 Answers

vote up 0 vote down

I don't have a comprehensive answer for you. But looking at our production WARs, the only platform specific config file is the jboss-web.xml, which contains only the context-root configuration.

Just like cross-platform client applications and generic DB access code, the only way to really be sure is to include deploying and testing on two different app servers as you go along. Make that a part of your testing.

I would recommend the reference app server (Glashfish) as one of them. If you can get everything working on that with no server specific config, it should deploy to other compliant app servers.

link|flag
what about data sources? JMS queue configuration? – grigory Mar 24 at 19:15
vote up 0 vote down

That has always been possible, that's why the app servers get certified.

Most of the times in addition to the general descriptor each vendor provide their own.

I don't think this is going to change with the new specs.

So as long as you don't use specific features and test your code against different app servers you're fine ( with either new specs or old ones )

Some times keeping this cross-compatibility is not always possible ( desirable or necessary ) For instance, one application may be targeted to an specific app-serv and don't care about the others, this happens a lot in corporate apps.

Some times a company is developing a product that will be sold to the public. Since they cannot control what app servers the customer will have, they test it against all the application servers ( and RDBMS ) there exits, or at least those of interest.

link|flag
possible - yes. feasible - hardly. we supported our J2EE app across different app.servers (jboss, weblogic, websphere) on different platforms (which makes it exponentially harder) for too long. I would estimate testing on different envs as at least 20% of release cost - imagine savings... – grigory Mar 25 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.