WEB-INF/views/some.jspにアクセスするにはどうすればいいですか? spring mvc

WEB-INF/views/some.jspにアクセスするにはどうすればいいですか? spring mvc

Web アプリケーションを Tomcat ローカルホストに正常にデプロイしました。アプリケーションには 2 つのページ (localhost:8080/spring-mvc と localhost:8080/home) があります。最初のページには 2 番目のページへのリンクがあります。アプリケーションを起動すると、最初のページは正常に開きますが、2 番目のページへのリンクをたどると、次のエラーが表示されます。

HTTP ステータス 404 – 見つかりません。

WEB-INF/view フォルダにアクセスできないようです。この問題の解決を手伝っていただけますか?

プロジェクト構造

ウェブ

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

アプリケーションコンテキスト.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

</beans>

ディスパッチャサーブレット.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc.xsd">

        <context:component-scan base-package="com.stoliarenko"/>

        <mvc:annotation-driven/>
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
              <property name="prefix" value="/WEB-INF/views/"/>
              <property name="suffix" value=".jsp"/>
          </bean>
</beans>

インデックス.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
  <head>
    <title>Index Page</title>
  </head>
  <body>
  <a href="/home">Go To Home Page!!</a>
  </body>
</html>

ホーム

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>${pageTitle}</title>
</head>
<body>
${message}
</body>
</html>

ホームコントローラ.java

package com.stoliarenko;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class HomeController {

    @RequestMapping(value = "/home")
    public ModelAndView home(){
        ModelAndView modelAndView = new ModelAndView("home");
        modelAndView.addObject("pageTitle", "Home Page");
        modelAndView.addObject("message", "Hi, Welcome! This is HomePage!");
        return modelAndView;
    }
}

答え1

根本原因 JSP パスを解決するために必要なクラスが Tomcat Jasper パッケージで使用可能であり、依存関係が pom.xml に追加されていません。そのため、Spring Boot アプリケーションは JSP パスを解決できません。

解決策 依存クラスは Tomcat Jasper で使用できます。

このリンクは役に立つかもしれない http://www.codersdesks.com/spring-boot-path-with-web-inf-or-meta-inf/

関連情報