I've been developing web app using Spring MVC 3 with Hibernate for persistance. Basically, my problem is that there is a requirement that there are two separate projects (one for end-users and completely other for admins). However, both applications should refer to same database.
I've been thinking of creating three separate projects: - one would be basically Hibernate project with models, repositories and services - second would be Spring MVC project for admins - third would be Spring MVC project for users
So my question - is it possible so somehow make reference to this Hibernate project from both of my Spring MVC projects, cause all I want to use are those services for data accessing.
Thanks in advance!
Yes you can, but not a reference to the hibernate project itself, You could easily build some
Jar
file inside your Hibernate project using Ant Script, thisJar
file would encapsulate all your common classes an resourcesThen you could add this Jar to Internal and Admin Project Build paths
The problem of this solution is that you will need remember to build the common
Jar
file on every change on your common classesCheck this tutorial to know how building a Jar using Ant, you could use Maven too
There is another approach using
SVN externals
or any mapped feature on your Version control system, by making the common project as an external repository and check it out in both projects (internal and admin). However using this approach will have the following problems: