Is this project Structure Valid?

Posted by rafuru on Programmers See other posts from Programmers or by rafuru
Published on 2014-06-03T07:40:48Z Indexed on 2014/06/03 9:34 UTC
Read the original article Hit count: 249

I have a dilemma: In the university we learn to create modular software (on java), but this modularity is explained using a single project with packages (a package for business, another one for DAOS and another one for the model, oh and a last package for frontend).

But in my work we use the next structure:

Example

I will try to explain:

First we create a java library project where the model (entities classes) are created in a package.

Next we create an EJB named DAOS and using the netbeans wizard we store the DAOS interfaces in the library project in another package , these interfaces are implemented in the DAOS bean.

So the next part is the business logic, we create a business EJB for each group of functions , again using the wizard we store the interface in the java library project in another package then is implemented on the business bean.

The final part (for the backend) is a bean that I have suggested: a Facade bean who will gather every method of the business beans in a single bean and this has an interface too that is created in our library project and implemented in the bean.

So the next part is call the facade module on the web project.

But I don't know how valid or viable is this, maybe I'm doing everything wrong and I don't even know! so I want to ask your opinion about this.

© Programmers or respective owner

Related posts about architecture

Related posts about uml