質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,6 +9,8 @@
|
|
9
9
|
web.xmlにはパッケージ名やurlパターンを記載しましたし、パッケージ名も記載しています。
|
10
10
|
|
11
11
|
なのに、なぜサーブレットが起動しないのかがわかりません。
|
12
|
+
|
13
|
+
コンテキストルートは「EmployeeManagementSite」です。
|
12
14
|
|
13
15
|
|
14
16
|
|
1
書式
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,23 +18,23 @@
|
|
18
18
|
|
19
19
|
→webapps
|
20
20
|
|
21
|
-
|
21
|
+
→→EmployeeManagementSite
|
22
22
|
|
23
|
-
|
23
|
+
→→→WebContent
|
24
24
|
|
25
|
-
|
25
|
+
→→→→JSP
|
26
26
|
|
27
|
-
|
27
|
+
→→→→→login.jsp
|
28
28
|
|
29
|
-
|
29
|
+
→→→→WEB-INF
|
30
30
|
|
31
|
-
|
31
|
+
→→→→web.xml
|
32
32
|
|
33
|
-
|
33
|
+
→→→→→classes
|
34
34
|
|
35
|
-
|
35
|
+
→→→→→→javaparts
|
36
36
|
|
37
|
-
|
37
|
+
→→→→→→→LoginServlet.class
|
38
38
|
|
39
39
|
|
40
40
|
|
@@ -44,17 +44,15 @@
|
|
44
44
|
|
45
45
|
<web-app
|
46
46
|
|
47
|
-
|
47
|
+
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
48
48
|
|
49
|
-
|
49
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
50
50
|
|
51
|
-
|
51
|
+
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
|
52
52
|
|
53
|
-
|
53
|
+
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
|
54
54
|
|
55
|
-
|
55
|
+
version="3.1">
|
56
|
-
|
57
|
-
>
|
58
56
|
|
59
57
|
<servlet>
|
60
58
|
|
@@ -92,9 +90,7 @@
|
|
92
90
|
|
93
91
|
<form action = "/LoginServlet" method = "post">
|
94
92
|
|
95
|
-
<input type = "submit" name = "login"
|
93
|
+
<input type = "submit" name = "login" value = "ログイン">
|
96
|
-
|
97
|
-
onclick = "return isCheck()">
|
98
94
|
|
99
95
|
</form>
|
100
96
|
|