Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

A Giant Leap into JBoss


A Giant Leap into JBoss

Several issues ago, Paulo Merson presented a thorough method for assessing your team's readiness to dive into distributed application development with Java 2 Enterprise Edition (Managing J2EE Risks, July 2004). Recently, I've encountered another risky situation that companies or government agencies may confront in the near future: leaving

proprietary J2EE servers for open source options.

Most of the time, the reason to leave a vendor is purely economical or political—the decision will be handed down from the top and suffer few, if any, objections. But that doesn't mean it'll be easy. Based on my own experience, I've assembled some pointers for migrating to JBoss, the popular open source J2EE application server.

Know Thyself
To estimate the migration's impact, you must have a clear picture of all your existing applications, be they in production or under development. Some simple applications will gracefully deploy on the new platform without any changes; others will require developer intervention to adapt scripts or even pieces of code.


[click for larger image]

A Miserly Management Console
JBoss's built-in management consoles are feature-poor compared to those of other vendors. All configuration is done in XML files, which can be off-putting.

In an ideal world, all the running applications are perfectly identified and documented—but in reality, with dozens of them developed years ago and maintained in different locations, it's essential to centralize a small set of core information. "The App Stats Questionnaire" is a simple survey that I use to capture a snapshot of the situation. It helps identify those applications that may be hard to deploy on the new platform because it pinpoints the critical aspects of J2EE, where dependency on the application server is hard to avoid. It also allows you to estimate the amount of configuration that will be needed, especially for container services.

For nontrivial applications, I find it necessary to interview the development or maintenance team that owns the application. The survey provides a quick overview of a project and allows you to ask focused questions.

Where Are You Going?
Acquiring a deep understanding of the new platform is essential, not only for the development teams but also for the deployment teams. Thus, even if JBoss is freely available as an open source project, it's worth investing in training and support services. This approach is in line with the current trend of buying software services instead of licenses.

Though constantly improving, JBoss's built-in management consoles (see "A Miserly Management Console") are poor in terms of features compared to those of the major vendors. All configuration is done in XML files, which can be off-putting. The deployment teams must learn to feel at ease with these new tools, because they're often in charge of creating, configuring and tuning development and production.

You also need a solid understanding of the basics of the server (like the JMX "bus" and the class-loading mechanism). For example, you usually have an operational and not a development choice to colocate applications on the same server (that is, in the same Java virtual machine), so the class-loading mechanism and its challenges must be understood.
Make sure you don't forget the change's impact on the development teams. My experience shows that they're less likely than the deployment teams to resist platform change—which makes perfect sense when you consider that their operational responsibilities (quality of service, stability and so on) are different from the programmers'.

That said, don't be fooled by programmers' enthusiasm to jump on a new platform. Such innovation carries a serious risk of productivity loss, especially if the programmers are using such advanced tools as BEA Workshop or JBuilder EJB Designer.

Beating the Joneses
The "version race" is another trap to avoid. Vendor servers are usually stable version-wise, with a slow release rate (fewer than one per year). When you switch to an open source product like JBoss, with regular releases (several per year), you're in danger of jumping on the version merry-go-round, getting lost racing after the latest issue, as a minor revision can prove bigger than expected. (An example: The version switch of the embedded Tomcat from 4 to 5 within the 3.2.x branch provides a new version of the JSP/Servlet engine and a slightly different configuration method for the embedded Tomcat, and that's enough to force you to rewrite homemade guides or change your JSTL default version!)

Make sure you control the versions allowed in the company and prevent teams from downloading and installing any version they want. This gives you the opportunity to repackage JBoss in a distribution that fits your actual needs; for example, removing all the nonrequired features (clustering, messaging and so on).

For all this, do not go alone: JBoss Inc. provides professional services including online support, training and on-site "right start" sessions that really make a difference. Having core JBoss developers tuning the server to your site's specifics is really valuable.

Then, Boldly Go!
As I've said, consider adapting the development environment to minimize the possible productivity impact of the migration to JBoss. This kind of migration is the perfect moment for making things right, so don't hesitate to introduce a new IDE. After swallowing the server-migration pill, people are ready for other improvements, especially if you provide good reasons for them.

Further, if the server platform has changed successfully, that means it can change again. To avoid getting tied to the new platform, try to target "pure" J2EE mechanisms—without getting too orthodox, of course. If pragmatism dictates that vendor-specific features drastically cut development time or improve performance, go ahead and implement them while carefully isolating the components. No vendor can be blamed for having palliated the flaws of J2EE in a proprietary manner. The good news? J2EE 1.4 will make it easier to stay in the norm, as EJB-driven Web services, timers and other features are now available in the specification.

The introduction of a tool like Xdoclet can help, it not only simplifies the coding of EJBs, but also generates the deployment descriptors. By generating rather than handwriting the standard (web.xml, application.xml and so on) and the specific (jboss.xml, jboss-app.xml) deployment descriptors, programmers feel less bound to the target server.

Eclipse offers a good open source platform for building a new IDE to support the migration effort (see also www.myeclipseide.org). I've found that productivity can be achieved with a blend of open source and commercial plug-ins. For example, Texas-based Genuitec offers a very attractive set of plug-ins that greatly enhance J2EE development (including XDoclet and Struts support, easy server deployment and many more). Another tool to consider is the MC4J Management Console; it leverages JMX to provide an excellent monitoring and control tool.

Some applications will take longer than others to migrate. You may need to negotiate limited vendor licenses (fewer CPUs or allowed users) until you can complete the switch.

Pragmatism v. Orthodoxy
A migration to JBoss is likely to give birth to a passionate polemic. Whether it's your decision or not, get ready to take on the consequences! When it comes to application servers, people tend to become highly religious. Transparency is your best weapon.

Download the Form
Click here for a PDF of the App Stats Questionnaire.

The App Stats Questionnaire
These focused questions provide a quick overview of a project.

What J2EE version are you using?<
While you can figure out the version from the vendor information, asking this simply saves time.

What are the JDK details
Legacy servers often run on fixed and outdated virtual machines, while with JBoss 4, the most recent, 1.4.x will be used; some libraries may no longer need to be deployed, as they're embedded in the latest JDK.

Do you use a front-end Web server? Which one?
If you're running a front-end Web server (often Apache), think again. JBoss launches an HTTP Coyote connector whose performance may, in many cases, obviate the need for a separate Web server.

With which applications is yours colocated?
Knowing if the application must be deployed in the same virtual machine as others is key. The JBoss class-loading mechanism (Unified Class Loader) may produce unexpected results.

For example, if you colocate two applications deploying two different versions of the same class, a unique version of the class will be available for both applications, creating hard-to-debug problems. This default behavior can easily be tuned to assign different class loaders to different applications. Keep it in mind!

Which J2EE technologies do you use?
Many projects use only subsets of J2EE. You need to know which ones, as an application without any EJB will probably be easier to deploy on any server. With EJB QL, the developers may have used proprietary extensions of this feeble query language. In the case of non-browser J2EE clients, these are typically Swing clients accessing a façade of SLSBs through RMI. The problem? The client library's incompatibility with the new server.

Which container services do you use?
The logging strategy may be vendor-specific and require adaptation. It's also worth checking to see if the application relies on a specific parser and processor, or if the default implementation provided by JAXP is enough. Finally, before J2EE 1.4, vendors took unique tacks for deploying Web services—approaches that aren't available in JBoss and require modification.

What's the security scheme?
If the security isn't customized but based on J2EE standards (which is better, of course), some adaptation could be required (see next question).

What are the authentication mechanisms and providers?
Application servers use different mechanisms for accessing security realms: You need to know what is used in order to estimate what is missing, and then to develop the missing bits.

For example, JBoss standard LDAP security module can be used with Active Directory but forces you to connect with the user CN (usually Last name + First name) instead of the Windows domain user ID. Conversely, WebLogic offers a specific connector that allows users to log in in a consistent way with their operating system login.

Another security aspect concerns the custom mapping between JAAS principals and J2EE roles. This possibility is offered by WebLogic, not by JBoss.

Which commit option do you use?
To guarantee application behavior, it's important to know what option is used. For nonstandard choices, deep and risky adaptations might be needed.

Do you use any proprietary libraries? Which ones?
Make sure you know exactly what's packaged in the deployment unit. Some deployed libraries may become unnecessary if they're currently available in the JDK, J2EE or JBoss standard libraries. In the case of vendor-specific libraries, replacements will have to be found, as you can rarely deploy classes from one vendor on the server of another.

Which frameworks do you use?
Frameworks are often based on open source libraries. Two different versions of the same library have a risk of clashing because, unlike commercial servers, JBoss launches many open source components. Check the dependencies of the framework to see if a conflict exists, then deploy only the parts of the framework that aren't redundant with the server's embedded libraries. If class cast exceptions arise, be ready to recompile the framework.

Provide a list of JARs added to the server classpath, and a list of deployed JARs/TLDs.
The motivation for this question is similar to the one concerning the use of frameworks. In fact, it's important when an application doesn't use a well-known framework but is still exposed to library conflicts. Getting this list has also proved useful for detecting goofs such as deploying J2EE core libraries in the deployment units.


Word to the Wise
Keep outsourcing vendor-neutral.

If you subcontract your development work, be careful to "neutralize" all technical aspects in your requests for tenders and contracts. In other words, no server vendor name should appear, and development should target the J2EE platform. This will save many discussions and problems with your providers—trust me, it's no fun to see one of them coming back with an 80 percent price hike, alleging as a pretext that they were initially contracted for WebLogic development (yes, it's happened).

DD


JBoss 4.0

JBoss Inc.
3340 Peachtree Rd. NE,
Ste. 1225
Atlanta, GA 30326
Tel: (404) 467-8555
Fax: (404) 948-1496
www.jboss.org

System Requirements:
JDK 1.3.1 or later (1.4.2 recommended), 300MB RAM, 75MB hard disk space, 400MHz CPU.

Rating: 3 stars The Rate Sheet

Pros:

  1. JBoss is a full-fledged J2EE 1.4-certified application server, for free!
  2. The affordable, efficient professional services are worth paying for.
  3. The microkernel approach leads to a transparent architecture (no black box).

Cons:

  1. The overall package is quite crude.
  2. You must embrace the awkward class loader repository mechanism.
  3. Deciphering an error message often requires combing through the source code.

 



David Dossot is the vice president of technology and cofounder of Agile Partner SA Luxembourg. Contact him at [email protected].

 


Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.