Spring Tool Suiteを使用してプロジェクトを実行すると、次のエラーが発生します。
しかし、私の問題がすでに適切な依存関係をpom.XML
ファイルに追加している場合は。では、何が問題になるのでしょうか?
次のようなpom.XML
ファイルの依存関係、
<dependency>
<groupId>org.Apache.Tomcat.embed</groupId>
<artifactId>Tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-Tomcat</artifactId>
<version>2.1.3.RELEASE</version>
</dependency>
私のコントローラーApplicationController.Java
は次のように、
package com.example.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class ApplicationController {
@RequestMapping("/")
public String Welcome() {
return "welcomepage";
}
}
私のバイブはsrc/main/webapp/WEB-INF/view/welcomepage.jsp
にあります。下のツリービューをご覧ください。
また、application.properties
ファイルもすでに変更しています。しかし、それでも何が悪いのか理解できません。
私のapplication.properties
ファイルは次のとおりです。
spring.mvc.view.prefix=/WEB-INF/view/
spring.mvc.view.suffix=.jsp
My welcomepage.jsp
にhelloと出力します。
<%@ page language="Java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
hello
</body>
</html>
アプリケーションからjarを生成し、Java -jar myapp.jarを使用して実行できましたが、このjarは、spring-boot-starter-parent以下のバージョンでのみ実行できました。
MyApp/pom.xml:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.1.RELEASE</version>
</parent>
私は調査しました Spring Boot JSP 404