How far have application servers advanced in portability of J2EE applications? - Stack Overflow most recent 30 from stackoverflow.com2010-03-22T00:28:44Zhttp://stackoverflow.com/feeds/question/678381http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/678381/how-far-have-application-servers-advanced-in-portability-of-j2ee-applications0How far have application servers advanced in portability of J2EE applications?grigoryhttp://stackoverflow.com/users/594702009-03-24T17:22:18Z2010-01-17T16:59:47Z
<p>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?</p>
<p>Assumptions: </p>
<ul>
<li>no proprietary extensions to J2EE
that are specific to concrete
application server vendor: application is in accordance with J2EE
spec only;</li>
<li>all application tiers are involved:
presentation, business logic, and
data tiers;</li>
<li>the following services may be involved:
web services, web application, JMS,
data access, scheduled jobs.</li>
</ul>
http://stackoverflow.com/questions/678381/how-far-have-application-servers-advanced-in-portability-of-j2ee-applications/678521#6785210Answer by Chase Seibert for How far have application servers advanced in portability of J2EE applications?Chase Seiberthttp://stackoverflow.com/users/76792009-03-24T17:57:28Z2009-03-24T17:57:28Z<p>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.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/678381/how-far-have-application-servers-advanced-in-portability-of-j2ee-applications/678554#6785540Answer by Oscar Reyes for How far have application servers advanced in portability of J2EE applications?Oscar Reyeshttp://stackoverflow.com/users/758342009-03-24T18:06:49Z2009-03-24T18:06:49Z<p>That has always been possible, that's why the app servers get certified. </p>
<p>Most of the times in addition to the general descriptor each vendor provide their own. </p>
<p>I don't think this is going to change with the new specs. </p>
<p>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 ) </p>
<p>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. </p>
<p>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. </p>