Enterprise Java

Choosing Technology Stack to build a common platform

There are many talks in the Java community about Spring vs Java EE. Fans of one group would argue you should use one and not other etc. When I see this, I can’t help but think why can’t we use them both together? In fact I think using them both effectively would create a great technology stack for building an infrastructure e.g. for a large company who would like to provide a common platform that may host and run many different applications and projects.

Why combine Spring and Java EE together?

When writing software, we create and build libraries/frameworks that can be reused and help us get things done faster. Spring is a swiss-army knife like library that allows an application to be built in an un-intrusive way and with many easier wrappers and helpers classes. This is what I call “developer friendly” library.

However, many people don’t realize that Spring is just a library that includes wrappers to many things that ease the development. For example, Spring has a web framework layer to let you write an MVC web app, but you still need a Servlet Container (server). Spring provides the data layer that mostly wraps other JPA/Hibernate/JDBC that integrate well in their IoC container, but the actual ORM implementation is outside of Spring (eg: Hibernate). Spring wraps JMS or even JNDI for development, but you still need a JMS server or a JNDI provider. Spring has a Transaction Manager Abstract layer, but it’s just a wrapper (for single DB, it’s the database vendor that actually provided the ACID attributes of your transaction guarantee, not Spring). If you want atomic transactions on multiple resources (such as JMS and Database, or multiple databases), you still need a “real” Transaction Manager (JTA)!

So now you see that in order to build a successful enterprise application, you need Spring on top of many vendor provided features. If you are not careful, you could be locked into many proprietary services that’s hard to integrate and deploy. This is where Java EE comes in. It’s a spec layout that a vendor must provide most of those services in a standard manner. Hence any JEE compliance server would provide services with standard API that is supposed to work in a similar way.

Now there must be a balance. From my experience, the more standards you enforce, then less “developer friendly” it will get. But at the same time, without a standard, it’s hard to provide a common infrastructure such as API, runtime server and/or even OS environment for deployment. This is the reason I would argue that combining Spring with Java EE would bring a more practical and effective platform to the IT community.

Choosing the Technology Stack

Not every project is created equal and their needs are mostly different. So, providing a common technology stack that will satisfy all projects is impossible. But we can certainly try to create a common one that will satisfy most of the projects needs. Also, choosing a concrete library/stack is very opinionated, and no matter which actual implementation is selected, there are always going to be pros and cons. With this in mind, I will try to lay out my own personal choices of a technology stack that I think it will provide the most flexible platform to host various projects and applications. Specially in a big corporate environment.

I will choose a Java EE application server as a common platform. From this, I will choose some “developer friendly” libraries that replace (or add on-top) a few existing EE standards, in order to increase productivity. I think EE has come a long way and gets better through each spec iteration, but I still feel that there is more flexibility in using Spring as the IoC container versus using CDI when wiring POJO services together. Plus, the Spring framework comes with a very flexible MVC layer that’s effective and easy to develop with in comparison to the plain Servlet API.

With Java EE 6, there are two profiles a server must provide. So let’s start exploring the stack from these two views.

JEE Web profile – Lighter web based driven application

  • Use Spring MVC (controller, form, validation, ModelAndView and IoC configurations) instead of plain Servlet API programming.
  • Write back-end business service logic using as much POJOs as possible and use Spring IoC to wire them. Do not abuse this. I personally think Spring IoC is more flexible and easier to use compared to CDI.
  • Use JPA for data service layer instead of JDBC API programming.
  • Use JSON data exchange format. From experience, JSON is much more efficient and easier to work with in comparison to XML.
  • Views options:
    • Use well formed xhtml/Bootstraps/jquery/AJAX -> If you need just static pages and some client side interactive
    • Thymeleaf -> If you need a lot of dynamic content to generate, use an template engine! This is better than JSP alone.
    • Vaadin -> If you need desktop application behavior like on web browser side. This is easier in compare to JSF.
  • Servlet 3.0 now support asynchronous requests. This solves many challenging problems in the web domain. Take advantage of it if needed! (The latest Spring MVC has support for this already.)

JEE 6 Full profile – Full EE features application

  • On top of everything mentioned above in Web Profile.
  • Use JMS for any messaging need that fall into Point-To-Point or Publish/Subscribe domain.
  • Use JTA when you need atomic transaction for multiple databases and/or JMS delivery.
  • Use standard JAX-RS (RESTful web service API) for exposing external services. Use JSON data exchange format.
  • Use consistent Spring IoC for services injection. It’s more flexible and easier to work with in compare to CDI.
  • Use POJO services and wire by Spring instead of EJB if possible. I found them more easier to test and development.
  • Plus whatever else EE spec somes with that it supports such as (JavaMail and JCA etc. usually Spring will have a easier wrapper for these API as well.)

Apache Camel – Light Weight ESB

The Camel project is not an EE standard. However, my experience is that many common IT work can be easily done using simple Camel routes/workflows. The development and style of Camel is simple to understand and easy to test. It can be run as a stand alone application/service or as part of a web application. I believe it’s a great value to add on top of a common platform with above. You would use it whenever you need the following:

  • For any integration pattern like work flow process (eg: bridge a file poller to a web service to a JMS queue to database etc.)
  • For creating business workflow process.
  • For any ETL workflow process.
  • For easy mapping of business requirement workflow to code logic process

Which EE application server to use

I think this is subjective as well, but we need to choose one that’s fit for our business needs. I personally favor JBoss because it’s open source, and yet they provide a commercial backed version of their application server. Being an open source based product, it gives developers greater flexibility in learning and exploring the platform. I also see many benefits in their in-house projects such as testing tools and libraries which are open and benefit platform developers.

What about Tomcat server?

Tomcat is a very well known Servlet container. However, it is only a Web container that supports Servlet/JSP applications. It does not provide JMS or JTA features that are provided by a Java EE server. It’s a fact that many web application requirements can be satisfied with only a simple Tomcat server. However, in a large IT environment, you will often need other services that are provided only by a Java EE server. In many cases, people will simply run Tomcat webapp and bridge to other Java EE server when needed.

With JEE6, the Web Profile can be stripped down to mostly Web Container features and this should make the server faster to start-up (less extra services are loaded). However, in case the application needs extra EE features, the platform we provide will be able to support them.
 

Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
HerrTaschenbier
HerrTaschenbier
10 years ago

i think the template engine you mentioned above is thymeleaf ( http://www.thymeleaf.org/ ), not ThemeLeaf :-)

JREB
JREB
10 years ago

Sorry for saying this, but I feel kind of obligated:

What could actually be an informative article becomes a little bit of annoying to read (at least for me) because of the poor English. If you take the time to publish things and want to convince people of something, you should also take 5-10 minutes to read through it and correct the worst mistakes. WHAT an article says is one thing, but it can become that much more convincing, if the author focuses a little bit on HOW the article says things… ;)

Ilias Tsagklis
10 years ago
Reply to  JREB

Hello JREB,

Thank you for your comment. Many of our contributing authors are not native English speakers and sometimes their writing lacks. I have edited the article for better clarity and readability. I hope now readers can better understand the author’s arguments. Thank you again for your support.

Kind Regards,
Ilias

JREB
JREB
10 years ago
Reply to  Ilias Tsagklis

Thanks, don’t get me wrong, I greatly appreciate your platform and the work of the volunteers, who publish great stuff here in their free time. And sure, not everybody is a native English speaker or close to fluent, but maybe there could be editors, who read over such articles before they get published (similar like you did now)? Didn’t want to sound hateful or something, I just wanted to point out a thing that could make javacodegeeks.com even better and more enjoyable for readers. ;) I would even be willing to help looking through articles myself, if there is the… Read more »

Back to top button