web-dev-qa-db-ja.com

Spring Boot MVC:JSPが見つかりません

問題: Spring Boot Web MVCアプリのWEB-INF/jspでビューにアクセスできません。

私がやったこと:

これは私のJSPです。

<%@ page language="Java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="c" uri="http://Java.Sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
    <ul>
        <%--@elvariable id="users" type="Java.util.List"--%>
        <c:forEach items="${utenti}" var="utente">
            <li>
                <c:out value="${utente.getUsername()}"/>
            </li>
        </c:forEach>
    </ul>
</body>
</html>

これは私のコントローラーです:

@Controller
public class UtenteController {

    @Autowired
    private UtenteService utenteService;

    @RequestMapping("/lista_utenti")
    public ModelAndView getListaUtentiView(){
        ModelMap model = new ModelMap();
        model.addAttribute("utenti", this.utenteService.getListaUtenti());
        return new ModelAndView("lista_utenti", model);
    }

}

これは私のapplication.propertiesです:

# MVC
spring.view.prefix=/WEB-INF/jsp/
spring.view.suffix=.jsp

#Postgres config
spring.datasource.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/DB_Test
spring.datasource.username=postgres
spring.datasource.password=postgres

そして、少なくとも、私の主なアプリケーション:

@Configuration
@EnableAutoConfiguration
@ComponentScan
public class SpringWebApplication extends SpringBootServletInitializer{

    public static void main(String[] args) {
        SpringApplication.run(SpringWebApplication.class, args);
    }

    @Override
    protected final SpringApplicationBuilder configure(final SpringApplicationBuilder application) {
        return application.sources(SpringWebApplication.class);
    }
}

http://localhost:8080/lista_utentiに行くと何が得られますか:

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.
Thu Jan 15 15:59:57 CET 2015
There was an unexpected error (type=Not Found, status=404).
No message available

何が悪いのですか?

14
abierto

Zio、あなたはあなたのpomへのこの依存関係を含めましたか?

<dependency>
   <groupId>org.Apache.Tomcat.embed</groupId>
   <artifactId>Tomcat-embed-jasper</artifactId>
   <scope>provided</scope>
</dependency>

これがないと、同じエラーが発生します。

21
Trink
<dependency>
<groupId>org.Apache.Tomcat.embed</groupId>
<artifactId>Tomcat-embed-jasper</artifactId>
<scope>required</scope>
</dependency>

これをIntellijにある私のプロジェクトに追加し、機能します。

7
lakshmi

私はこれを私のmaven依存関係に追加していますが、今は機能しています

<dependency>
 <groupId>org.springframework.boot</groupId>
 <artifactId>spring-boot-starter-Tomcat</artifactId>
 <scope>provided</scope>
</dependency>
1
Gusti Arya

標準のthymeleafプロジェクトの使用からBootstrap(私が持っているように)に移動した場合は、この依存関係を必ず削除してください。

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
0
Awila_Tech

Tomcat Embed Jasper Dependencyをpom.xmlファイルに追加

<dependency>
    <groupId>org.Apache.Tomcat.embed</groupId>
    <artifactId>Tomcat-embed-jasper</artifactId>
    <version>9.0.30</version>
</dependency>
0
sagarwalke7030