# SimpleWebApp **Repository Path**: limidata/SimpleWebApp ## Basic Information - **Project Name**: SimpleWebApp - **Description**: These are the principles that you should keep in mind to be able to build a Web application using Servlet + JSP satisfying criteria: code is simple, easy to understand and easy to maintain. - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-08-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #[SimpleWebApp](http://o7planning.org/en/10285/create-a-simple-java-web-application-using-servlet-jsp-and-jdbc) These are the principles that you should keep in mind to be able to build a Web application using Servlet + JSP satisfying criteria: code is simple, easy to understand and easy to maintain. The principles: 1. Never allow users to directly access to your JSP page. 2. JSP is only considered as the place to display interface. 3. Servlet acts as the controller of the application flows and program logical processing. 4. Open the JDBC connection and transaction management in Filter (Optional).