質問編集履歴

1

コード追記

2020/08/20 00:04

投稿

saya24
saya24

スコア222

test CHANGED
File without changes
test CHANGED
@@ -115,3 +115,37 @@
115
115
  ```
116
116
 
117
117
  ![ブラウザ](f7cbdb600c6a2c12c5511c483634e618.png)
118
+
119
+
120
+
121
+
122
+
123
+
124
+
125
+ ```xml
126
+
127
+ <?xml version="1.0" encoding="UTF-8"?>
128
+
129
+ <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
130
+
131
+ <display-name>sampleservlet</display-name>
132
+
133
+ <welcome-file-list>
134
+
135
+ <welcome-file>index.html</welcome-file>
136
+
137
+ <welcome-file>index.htm</welcome-file>
138
+
139
+ <welcome-file>index.jsp</welcome-file>
140
+
141
+ <welcome-file>default.html</welcome-file>
142
+
143
+ <welcome-file>default.htm</welcome-file>
144
+
145
+ <welcome-file>default.jsp</welcome-file>
146
+
147
+ </welcome-file-list>
148
+
149
+ </web-app>
150
+
151
+ ```