This commit is contained in:
2022-08-22 16:55:11 +08:00
parent d7c40f6dc8
commit b78582d1f7
9 changed files with 52 additions and 2 deletions

View File

@@ -0,0 +1,4 @@
#Created by Apache Maven 3.8.5
artifactId=session-manager
groupId=com.cpic
version=1.0-SNAPSHOT

View File

@@ -0,0 +1 @@
d:\develop\study\servlet-learning\servlet-session\session-manager\src\main\java\com\cpic\SessionMan.java

View File

@@ -0,0 +1,15 @@
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<display-name>Archetype Created Web Application</display-name>
<servlet>
<servlet-name>SessionMan</servlet-name>
<servlet-class>com.cpic.SessionMan</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SessionMan</servlet-name>
<url-pattern>/SessionMan</url-pattern>
</servlet-mapping>
</web-app>

View File

@@ -0,0 +1,5 @@
<html>
<body>
<h2>Hello World!</h2>
</body>
</html>