回答編集履歴
1
追記
answer
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
web.xmlの内容が提示されていませんのでどうかわかりませんが、この記事は参考になりませんか?
|
|
2
2
|
|
|
3
3
|
* qiitaの記事。[tomcatのjspでjava8を使えるようにする](https://qiita.com/hibinohirokatsu/items/80563665baeae5ba01fe)
|
|
4
|
-
* [http://docs.escenic.com/ece-tech-notes/5.7/jsp_servlet_configuration.html](http://docs.escenic.com/ece-tech-notes/5.7/jsp_servlet_configuration.html)
|
|
4
|
+
* [http://docs.escenic.com/ece-tech-notes/5.7/jsp_servlet_configuration.html](http://docs.escenic.com/ece-tech-notes/5.7/jsp_servlet_configuration.html)
|
|
5
|
+
|
|
6
|
+
----
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
[Jasper 2 JSP Engine How To](https://tomcat.apache.org/tomcat-8.0-doc/jasper-howto.html)
|
|
10
|
+
|
|
11
|
+
Tomcat8のデフォルトは、1.7のようです。
|
|
12
|
+
|
|
13
|
+
>
|
|
14
|
+
compilerSourceVM - What JDK version are the source files compatible with? (Default value: 1.7)
|
|
15
|
+
> compilerTargetVM - What JDK version are the generated files compatible with? (Default value: 1.7)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
[https://tomcat.apache.org/tomcat-9.0-doc/jasper-howto.html](https://tomcat.apache.org/tomcat-9.0-doc/jasper-howto.html)
|
|
19
|
+
|
|
20
|
+
Tomcat9なら、1.8。だから設定は不要。かな。
|
|
21
|
+
|
|
22
|
+
> compilerSourceVM - What JDK version are the source files compatible with? (Default value: 1.8)
|
|
23
|
+
> compilerTargetVM - What JDK version are the generated files compatible with? (Default value: 1.8)
|