https://github.com/h3ar7b3a7/servletsandjsp
Exploration of Java Enterprise web applications, Servlets and Java Server Pages.
https://github.com/h3ar7b3a7/servletsandjsp
java-server-pages jee mongodb servlets
Last synced: 11 months ago
JSON representation
Exploration of Java Enterprise web applications, Servlets and Java Server Pages.
- Host: GitHub
- URL: https://github.com/h3ar7b3a7/servletsandjsp
- Owner: H3AR7B3A7
- Created: 2020-11-04T04:52:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-30T16:27:46.000Z (about 5 years ago)
- Last Synced: 2025-01-25T18:11:22.224Z (12 months ago)
- Topics: java-server-pages, jee, mongodb, servlets
- Language: Java
- Homepage:
- Size: 117 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Servlets & JSP
[Doc: JavaEE application](https://www.jetbrains.com/help/idea/creating-and-running-your-first-java-ee-application.html)
## Deployment
### TomCat or GlassFish
[Tomcat](http://tomcat.apache.org/) is simply an HTTP server and a Java servlet container. [Glassfish](https://javaee.github.io/glassfish/download) is a complete Java EE application server, including an EJB container and all the other features of this stack. ... By comparison, Tomcat server administration is easier than Glassfish administration, since there are fewer moving parts in Tomcat.
### Default URL
http://localhost:8080/ServletsAndJsp_war_exploded/
Where "ServletsAndJsp" is the project name.
This can be changed in the 'Run/Debug configurations'.
## Servlets
[Interface](https://docs.oracle.com/javaee/7/api/javax/servlet/Servlet.html)
[HttpServlet](https://docs.oracle.com/javaee/7/api/javax/servlet/http/HttpServlet.html)
[GenericServlet](https://docs.oracle.com/javaee/7/api/javax/servlet/GenericServlet.html)
[FacesServlet](https://docs.oracle.com/javaee/7/api/javax/faces/webapp/FacesServlet.html)
## File structure
The server hides the WEB-INF file from users.