質問編集履歴
3
関係のありそうなWarningを追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -220,4 +220,22 @@
|
|
220
220
|
</plugins>
|
221
221
|
</build>
|
222
222
|
</project>
|
223
|
+
```
|
224
|
+
|
225
|
+
---
|
226
|
+
|
227
|
+
関係のありそうなWarning
|
228
|
+
|
229
|
+
```
|
230
|
+
Overriding managed version 1.10 for commons-codec pom.xml /yyyyy 行 95 Maven pom ロード問題
|
231
|
+
Overriding managed version 1.4.196 for h2 pom.xml /yyyyy 行 135 Maven pom ロード問題
|
232
|
+
Overriding managed version 2.4.12 for groovy-all pom.xml /yyyyy 行 89 Maven pom ロード問題
|
233
|
+
Overriding managed version 2.6.7.RELEASE for spring-data-rest-core pom.xml /yyyyy 行 112 Maven pom ロード問題
|
234
|
+
Overriding managed version 2.8.10 for jackson-datatype-hibernate4 pom.xml /yyyyy 行 106 Maven pom ロード問題
|
235
|
+
Overriding managed version 5.0.12.Final for hibernate-core pom.xml /yyyyy 行 60 Maven pom ロード問題
|
236
|
+
Overriding managed version 5.0.12.Final for hibernate-entitymanager pom.xml /yyyyy 行 65 Maven pom ロード問題
|
237
|
+
Overriding managed version 5.1.44 for mysql-connector-java pom.xml /yyyyy 行 75 Maven pom ロード問題
|
238
|
+
Unknown referenced nature: org.hibernate.eclipse.console.hibernateNature. .project /yyyyy 不明 Unknown nature
|
239
|
+
Unknown referenced nature: org.jboss.tools.cdi.core.cdinature. .project /xxxxx 不明 Unknown nature
|
240
|
+
Unknown referenced nature: org.jboss.tools.jst.web.kb.kbnature. .project /xxxxx 不明 Unknown nature
|
223
241
|
```
|
2
pom.xmlに関して追記しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -45,4 +45,179 @@
|
|
45
45
|
...
|
46
46
|
Server version: Apache Tomcat/8.5.33
|
47
47
|
Server built: Aug 12 2018 08:20:08 UTC
|
48
|
-
...
|
48
|
+
...
|
49
|
+
|
50
|
+
---
|
51
|
+
|
52
|
+
pom.xml
|
53
|
+
|
54
|
+
```xml
|
55
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
56
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
57
|
+
<modelVersion>4.0.0</modelVersion>
|
58
|
+
<groupId>xxxxx</groupId>
|
59
|
+
<artifactId>xxxxx</artifactId>
|
60
|
+
<version>xxxxx</version>
|
61
|
+
<packaging>war</packaging>
|
62
|
+
<name>xxxxx</name>
|
63
|
+
<description>xxxxx</description>
|
64
|
+
<dependencies>
|
65
|
+
<dependency>
|
66
|
+
<groupId>org.apache.tomcat</groupId>
|
67
|
+
<artifactId>tomcat-el-api</artifactId>
|
68
|
+
<version>8.5.9</version>
|
69
|
+
</dependency>
|
70
|
+
<dependency>
|
71
|
+
<groupId>org.apache.tomcat</groupId>
|
72
|
+
<artifactId>tomcat-i18n-es</artifactId>
|
73
|
+
<version>8.5.9</version>
|
74
|
+
</dependency>
|
75
|
+
<dependency>
|
76
|
+
<groupId>org.apache.tomcat</groupId>
|
77
|
+
<artifactId>tomcat-websocket</artifactId>
|
78
|
+
<version>8.5.9</version>
|
79
|
+
</dependency>
|
80
|
+
<dependency>
|
81
|
+
<groupId>org.apache.tomcat</groupId>
|
82
|
+
<artifactId>tomcat-jasper</artifactId>
|
83
|
+
<version>8.5.9</version>
|
84
|
+
</dependency>
|
85
|
+
<dependency>
|
86
|
+
<groupId>org.apache.tomcat</groupId>
|
87
|
+
<artifactId>tomcat-jasper-el</artifactId>
|
88
|
+
<version>8.5.9</version>
|
89
|
+
</dependency>
|
90
|
+
<dependency>
|
91
|
+
<groupId>org.apache.tomcat</groupId>
|
92
|
+
<artifactId>tomcat-util</artifactId>
|
93
|
+
<version>8.5.9</version>
|
94
|
+
</dependency>
|
95
|
+
<dependency>
|
96
|
+
<groupId>org.apache.tomcat</groupId>
|
97
|
+
<artifactId>tomcat-storeconfig</artifactId>
|
98
|
+
<version>8.5.9</version>
|
99
|
+
</dependency>
|
100
|
+
<dependency>
|
101
|
+
<groupId>org.apache.tomcat</groupId>
|
102
|
+
<artifactId>tomcat-jsp-api</artifactId>
|
103
|
+
<version>8.5.9</version>
|
104
|
+
</dependency>
|
105
|
+
<dependency>
|
106
|
+
<groupId>org.apache.tomcat</groupId>
|
107
|
+
<artifactId>tomcat-tribes</artifactId>
|
108
|
+
<version>8.5.9</version>
|
109
|
+
</dependency>
|
110
|
+
<dependency>
|
111
|
+
<groupId>org.apache.tomcat</groupId>
|
112
|
+
<artifactId>tomcat-catalina</artifactId>
|
113
|
+
<version>8.5.9</version>
|
114
|
+
</dependency>
|
115
|
+
<dependency>
|
116
|
+
<groupId>org.apache.tomcat</groupId>
|
117
|
+
<artifactId>tomcat-jni</artifactId>
|
118
|
+
<version>8.5.9</version>
|
119
|
+
</dependency>
|
120
|
+
<dependency>
|
121
|
+
<groupId>org.apache.tomcat</groupId>
|
122
|
+
<artifactId>tomcat-websocket-api</artifactId>
|
123
|
+
<version>8.5.9</version>
|
124
|
+
</dependency>
|
125
|
+
<dependency>
|
126
|
+
<groupId>org.apache.tomcat</groupId>
|
127
|
+
<artifactId>tomcat-coyote</artifactId>
|
128
|
+
<version>8.5.9</version>
|
129
|
+
</dependency>
|
130
|
+
<dependency>
|
131
|
+
<groupId>org.apache.tomcat</groupId>
|
132
|
+
<artifactId>tomcat-catalina-ha</artifactId>
|
133
|
+
<version>8.5.9</version>
|
134
|
+
</dependency>
|
135
|
+
<dependency>
|
136
|
+
<groupId>org.apache.tomcat</groupId>
|
137
|
+
<artifactId>tomcat-api</artifactId>
|
138
|
+
<version>8.5.9</version>
|
139
|
+
</dependency>
|
140
|
+
<dependency>
|
141
|
+
<groupId>org.apache.tomcat</groupId>
|
142
|
+
<artifactId>tomcat-annotations-api</artifactId>
|
143
|
+
<version>8.5.9</version>
|
144
|
+
</dependency>
|
145
|
+
<dependency>
|
146
|
+
<groupId>org.apache.tomcat</groupId>
|
147
|
+
<artifactId>tomcat-jaspic-api</artifactId>
|
148
|
+
<version>8.5.9</version>
|
149
|
+
</dependency>
|
150
|
+
<dependency>
|
151
|
+
<groupId>org.apache.tomcat</groupId>
|
152
|
+
<artifactId>tomcat-catalina-ant</artifactId>
|
153
|
+
<version>8.5.9</version>
|
154
|
+
</dependency>
|
155
|
+
<dependency>
|
156
|
+
<groupId>org.apache.tomcat</groupId>
|
157
|
+
<artifactId>tomcat-servlet-api</artifactId>
|
158
|
+
<version>8.5.9</version>
|
159
|
+
</dependency>
|
160
|
+
<dependency>
|
161
|
+
<groupId>org.apache.tomcat</groupId>
|
162
|
+
<artifactId>tomcat-util-scan</artifactId>
|
163
|
+
<version>8.5.9</version>
|
164
|
+
</dependency>
|
165
|
+
<dependency>
|
166
|
+
<groupId>org.apache.tomcat</groupId>
|
167
|
+
<artifactId>tomcat-i18n-ja</artifactId>
|
168
|
+
<version>8.5.9</version>
|
169
|
+
</dependency>
|
170
|
+
<dependency>
|
171
|
+
<groupId>org.eclipse.jdt.core.compiler</groupId>
|
172
|
+
<artifactId>ecj</artifactId>
|
173
|
+
<version>4.5.1</version>
|
174
|
+
</dependency>
|
175
|
+
<dependency>
|
176
|
+
<groupId>org.apache.tomcat</groupId>
|
177
|
+
<artifactId>tomcat-jdbc</artifactId>
|
178
|
+
<version>8.5.9</version>
|
179
|
+
</dependency>
|
180
|
+
<dependency>
|
181
|
+
<groupId>org.apache.tomcat</groupId>
|
182
|
+
<artifactId>tomcat-i18n-fr</artifactId>
|
183
|
+
<version>8.5.9</version>
|
184
|
+
</dependency>
|
185
|
+
<dependency>
|
186
|
+
<groupId>org.apache.tomcat</groupId>
|
187
|
+
<artifactId>tomcat-dbcp</artifactId>
|
188
|
+
<version>8.5.9</version>
|
189
|
+
</dependency>
|
190
|
+
<dependency>
|
191
|
+
<groupId>org.springframework</groupId>
|
192
|
+
<artifactId>spring-web</artifactId>
|
193
|
+
<version>4.3.11.RELEASE</version>
|
194
|
+
</dependency>
|
195
|
+
<dependency>
|
196
|
+
<groupId>org.springframework</groupId>
|
197
|
+
<artifactId>spring-webmvc</artifactId>
|
198
|
+
<version>4.3.11.RELEASE</version>
|
199
|
+
</dependency>
|
200
|
+
</dependencies>
|
201
|
+
<build>
|
202
|
+
<finalName>ROOT</finalName>
|
203
|
+
<sourceDirectory>src</sourceDirectory>
|
204
|
+
<plugins>
|
205
|
+
<plugin>
|
206
|
+
<artifactId>maven-compiler-plugin</artifactId>
|
207
|
+
<version>3.7.0</version>
|
208
|
+
<configuration>
|
209
|
+
<source>1.8</source>
|
210
|
+
<target>1.8</target>
|
211
|
+
</configuration>
|
212
|
+
</plugin>
|
213
|
+
<plugin>
|
214
|
+
<artifactId>maven-war-plugin</artifactId>
|
215
|
+
<version>3.0.0</version>
|
216
|
+
<configuration>
|
217
|
+
<warSourceDirectory>WebContent/build/default</warSourceDirectory>
|
218
|
+
</configuration>
|
219
|
+
</plugin>
|
220
|
+
</plugins>
|
221
|
+
</build>
|
222
|
+
</project>
|
223
|
+
```
|
1
私の開発環境を追記しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -24,4 +24,25 @@
|
|
24
24
|
サーブレットを介してアクセスするようなプロジェクトの作り方を解説しているような
|
25
25
|
Webサイトを教えていただくだけでもかまいません。
|
26
26
|
|
27
|
-
重ねてよろしくお願いします。
|
27
|
+
重ねてよろしくお願いします。
|
28
|
+
|
29
|
+
---
|
30
|
+
追記
|
31
|
+
|
32
|
+
macOS High Sierra
|
33
|
+
バージョン 10.13.4
|
34
|
+
|
35
|
+
Eclipse IDE for Java Developers
|
36
|
+
Version: Photon Release (4.8.0)
|
37
|
+
Build id: 20180619-1200
|
38
|
+
|
39
|
+
$ java -version
|
40
|
+
java version "1.8.0_181"
|
41
|
+
Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
|
42
|
+
...
|
43
|
+
|
44
|
+
$ /usr/local/tomcat8/bin/version.sh
|
45
|
+
...
|
46
|
+
Server version: Apache Tomcat/8.5.33
|
47
|
+
Server built: Aug 12 2018 08:20:08 UTC
|
48
|
+
...
|