I need to code an application wich Front end and Backend have different templates. Should I make one project with fe and bo in different package same project or, make the core app a web service and make fe and bo two sepparated web sites consuming the web service. Will be a one tier app and is JavaEE
I need to code an application wich Front end and Backend have different templates.
Share
You should keep the core logic as a Web Service and then create two consumers one for front end and another for back end application; this allows you to keep the changes at one place only.