I have 2 projects, using RestFull Jersey:
- ProjectX
- ProjectY
And the User module, this module is responsible for making GET, POST, REMOVE to manipulate User information.
This module is shared between these projects. But written in different Tablespaces, but with the same table structure.
We use the following stream:
UserWebService - > UserAppService - > BabyUser - > UserID
The problem is:
- I create a third ProjectGlobal project to place these layers including WebService Or do I create a third project with only the last 3 layers and a UserWebService for the ProjectX and another for the ProjectY ? >
I need to understand what's best from a technical point of view.