My Java project has multiple JSP (view) pages, which either insert into or query a database. I created the main page and links to each JSP.
I am unsure whether I should put each component of the project (MVC pattern with jsp, servlet, a Java file) into its own web application and its own war file for uploading to the web server. Is this a proper way to build my web project?
If I did this, each component/application would need their own JDBC driver, which seems redundant. I could also group the insert pages together in one application and the query pages in another - would that be a better way to proceed?