WEB-INF/views/some.jsp에 액세스하는 방법은 무엇입니까? 봄 MVC

WEB-INF/views/some.jsp에 액세스하는 방법은 무엇입니까? 봄 MVC

내 웹앱을 Tomcat 로컬 호스트에 성공적으로 배포했습니다. 내 앱에는 localhost:8080/spring-mvc 및 localhost:8080/home이라는 2개의 페이지가 있습니다. 첫 번째 페이지에는 두 번째 페이지에 대한 링크가 있습니다. 앱을 시작하면 첫 번째 페이지가 성공적으로 열리지만 두 번째 페이지에 대한 링크를 따라가면 오류가 나타납니다.

HTTP 상태 404 – 찾을 수 없습니다.

WEB-INF/view 폴더에 접근 권한이 없는 것 같습니다. 이 문제를 해결하도록 도와주실 수 있나요?

프로젝트 구조

web.xml

<?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>

applicationContext.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>

디스패처-servlet.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>

index.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>

home.jsp

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

HomeController.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에 추가되지 않습니다. 따라서 스프링 부트 애플리케이션은 jsp 경로를 확인할 수 없습니다.

솔루션 종속 클래스는 Tomcat Jasper에서 사용할 수 있습니다.

이 링크가 유용할 수 있습니다 http://www.codersdesks.com/spring-boot-path-with-web-inf-or-meta-inf/

관련 정보