Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Large Enterprise Java Application - Modularization

I work for a country-wide company, so the software we develop is large scale.

Our core system is Web based including webservices. We are currently redesigning the entire project and is moment to start the project structure.

We have like 7 web modules including for the web project based on Struts2 and Spring 3.1. A Webservice core based on JAX-WS and Spring 3.1

My question is what are the best practices to design the project structure and modularization for a project like this:

We'll definitely use Maven and OSGi if needed. I'm thinking in something like

WebProject.war
   |---Web.xml
   |--- Libs
   |
   |--- Web Module1.jar
   |--- Web Module2.jar
   |--- Web Module3.jar
   |--- Web Module4.jar
   |--- Web Module5.jar
   |--- Web Module6.jar

 WebService.war
   |---Web.xml
   |--- Libs
   |
   |--- Service.jar
   |--- Service2.jar

 EJBProject.jar
   |
   |--- module.jar
   |--- module2.jar

This is what I personally have in mind, but we are looking for something better modularized so we can work and deploy WebModule1.jar without affecting the other modules and main project WebProject.war. Also with this we want the specialized teams to only have the code of their projects, so if a Team must work only with Service2.jar in their IDE they will only have the code for Service2.jar and a resource project with the others project already compiled.

Thanks

like image 610
Garis M Suero Avatar asked Apr 18 '12 20:04

Garis M Suero


People also ask

What is Java modularization?

What is Modularity in Java? A module is more like an independent partition of software that is communicated through an interface. Modularity explores the creation of a program by using different modules than a single legacy architecture.

How modularity is implemented in Java?

Modularization in Java adds another level of aggregation above packages. It is uniquely named like classes and methods and it can consist of a reusable group of related packages, or maybe even resources like images or XML files. A module always has a descriptor that consists of all its specifications.

How do I modularize a Java project?

Adding Modules to the Unnamed Module For example, when we try to run Java 8 programs as-is with Java 9 compiler we may need to add modules. In general, the option to add the named modules to the default set of root modules is –add-modules <module>(,<module>)* where <module> is a module name.

What is a Java modular application?

A Java module is a packaging mechanism that enables you to package a Java application or Java API as a separate Java module. A Java module is packaged as a modular JAR file. A Java module can specify which of the Java packages it contains that should be visible to other Java modules which uses this module.


2 Answers

The key aspect of modularity is that your module knows as little as is humanly possible so that it can be reused in many different contexts. Bugs only occur when an assumption is violated, minimizing the assumptions is the biggest bug killer. OSGi provides tools like µservices that are very good in allowing assumptions to remain local.

Your layout looks very much like a web project, which imho is wrong since most code we have to develop ourselves should be independent of the technology used to present it. All this technology is likely to change in the near future since web applications are shifting rapidly to the browser, browsers are becoming fat clients again. I.e. the very modern REST interfaces already feel very old fashioned if you see what pure messaging is doing. All this volatility means that you want to make your modules as decoupled as possible.

So I would never couple any domain code to anything that is coupled to libraries that are coupled to web technology. These transitive dependencies are going to hurt you in the (near) future. Built small cohesive uncoupled modules and then use them as lego blocks to build your applications.

like image 182
Peter Kriens Avatar answered Nov 15 '22 16:11

Peter Kriens


I'd highly recommend reading Kirk Knoernschild's "Java Application Architecture: Modularity Patterns with Examples Using OSGi". You could start by modularizing the app before migrating to OSGi (and I'd definitely invest in good test coverage if you don't already have it).

If you're using servlet spec 3.0 then look at using web-fragments.

In terms of the structure you've shown, I'd say don't nest anything (except web-fragments), the WARs can become WABs (web application bundle - basically a skinny WAR). Also leverage OSGi's μServices as much as possible - that's where the fun starts =)

Enterprise OSGi frameworks like Karaf and Virgo offer a lot of support while you're straddling the JEE-OSGi divide (Equinox and Felix alone are a little to barebones).

like image 38
earcam Avatar answered Nov 15 '22 16:11

earcam