복붙노트

[SPRING] 봄에 html 파일로 작업하지 않는 환영 파일

SPRING

봄에 html 파일로 작업하지 않는 환영 파일

web.xml에서 환영 파일을 받았습니다. 하지만 응용 프로그램을 실행할 때 http://172.16.2.16:8080/sampletest/에 404 오류가 표시됩니다.

그것은 봄 응용 프로그램입니다.

을 포함한다.

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    id="WebApp_ID" version="3.1">
    <display-name>sampletest</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
    </welcome-file-list>

    <!-- Spring MVC -->
    <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>

나는 일식 루나, 자바 8, 바람둥이 8 및 메이븐 프레임 워크를 사용하고 있습니다. index.html 파일은 webapp 폴더 바로 아래에 있으며 web.xml은 webapp / WEB-INF 폴더 아래에 있습니다. index.html 대신 index.jsp를 사용하면 작동합니다. 그런 다음 환영 페이지가 http://172.16.2.16:8080/sampletest/을 사용하여로드됩니다.

이 문제는 환영 파일에만 있습니다. 그렇지 않으면 스프링 구성이 작동합니다. http : // localhost : 8080 / sampletest / test /는 데이터베이스에서 데이터를로드합니다.

콘솔의 오류 로그

......................

Jul 10, 2014 12:38:42 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 4963 ms
Jul 10, 2014 12:38:42 PM org.springframework.web.servlet.DispatcherServlet noHandlerFound
WARNING: No mapping found for HTTP request with URI [/sampletest/] in DispatcherServlet with name 'dispatcher'

index.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>

</body>
</html>

발송자

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd">

    <context:annotation-config />

    <mvc:annotation-driven />

    <bean class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />

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

    <tx:annotation-driven transaction-manager="transactionManager" />

    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="packagesToScan">
            <array>
                <value>com.sample.test.domain</value>
            </array>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
                <prop key="hibernate.show_sql">true</prop>
                <prop key="hibernate.format_sql">false</prop>
                <prop key="hibernate.use_sql_comments">false</prop>
                <prop key="hibernate.hbm2ddl.auto">update</prop>
                <prop key="hibernate.connection.characterEncoding">UTF-8</prop>
                <prop key="hibernate.connection.useUnicode">true</prop>
                <prop key="hibernate.connection.CharSet">UTF-8</prop>
            </props>
        </property>
        <property name="dataSource">
            <ref bean="dataSource" />
        </property>
    </bean>

    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="com.mysql.jdbc.Driver" />
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/sampletest?autoConnect=true" />
        <property name="user" value="root" />
        <property name="password" value="root" />
    </bean>

    <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <!-- HibernateTransactionManager -->
    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory" />
    </bean>

    <bean id="openSessionInViewInterceptor"
        class="org.springframework.orm.hibernate3.support.OpenSessionInViewInterceptor">
        <property name="sessionFactory">
            <ref local="sessionFactory" />
        </property>
        <property name="flushModeName">
            <value>FLUSH_AUTO</value>
        </property>
    </bean>
</beans>

제어 장치

package com.sample.test.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import com.sample.test.dto.Response;
import com.sample.test.facade.AccelFlowFacade;

@Controller
public class SampleTestController {

    @Autowired
    @Qualifier("sampleTestFacade")
    SampleTestFacade sampleTestFacade;

    public SampleTestFacade getSampleTestFacade() {
        return sampleTestFacade;
    }

    public void setSampleTestFacade(SampleTestFacade sampleTestFacade) {
        this.sampleTestFacade= sampleTestFacade;
    }

    @RequestMapping(value = "/test", method = RequestMethod.GET)
    public @ResponseBody Response display() throws Exception {
        sampleTestFacade.disaply();
        Response res = new Response();
        return res;
    }
}

해결법

  1. ==============================

    1.dispatcher-servlet.xml에 를 추가하십시오.

    dispatcher-servlet.xml에 를 추가하십시오.

    자세한 내용은 여기를 참조하십시오.

  2. ==============================

    2.들어오는 모든 요청을 여기서 운영자에게 매핑했습니다.

    들어오는 모든 요청을 여기서 운영자에게 매핑했습니다.

    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    

    따라서 응용 프로그램에 대한 모든 URL 요청은 '/'가 들어오는 모든 요청을 매핑하므로 발송자 내부로 전달됩니다. 응용 프로그램 서버 로그에서 스택 추적 확인

    최신 정보:

    '/'패턴에 대한 핸들러가 없기 때문에 아래와 같은 경고 메시지가 표시됩니다.

    아래 옵션 중 하나를 수행 할 수 있습니다.

    web.xml을 수정하십시오.

    <servlet-mapping>
            <servlet-name>dispatcher</servlet-name>
            <url-pattern>*.htm</url-pattern>
        </servlet-mapping>  
    

    그리고 당신의 컨트롤러에서,

    @RequestMapping(value = "/test.htm", method = RequestMethod.GET)
    public @ResponseBody Response display() throws Exception {
        accelFlowFacade.disaply();
        Response res = new Response();
        return res;
    }
    
  3. ==============================

    3.시작시 기본적으로 들어오는 모든 요청은 web.xml에 쓰는 것처럼 '/'패턴에 매핑됩니다.

    시작시 기본적으로 들어오는 모든 요청은 web.xml에 쓰는 것처럼 '/'패턴에 매핑됩니다.

    <servlet-mapping>
        <servlet-name>dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    

    최신 정보:

  4. ==============================

    4.환영 파일은 다음 변경 사항을 사용하여 액세스 할 수 있습니다.

    환영 파일은 다음 변경 사항을 사용하여 액세스 할 수 있습니다.

    1. 디스패처에 다음과 같이 리소스 경로를 추가합니다.

          <mvc:resources mapping="/" location="/index.html" />
    

    change 2. 다음과 같이 컨트롤러 핸들러를 추가하십시오.

         @Controller
          public class RestController {
    
         @RequestMapping(value = "/", method = RequestMethod.GET)
          public String welcome() {
                return "index.html";
          }
    
         }
    

    변경 사항 3 : index.html 파일은 프로젝트의 WebContent 폴더에 있어야합니다.

    참고 : Dispatcher 서블릿 파일에 mvc bean을 추가 할 수없는 경우

      xmlns:mvc="http://www.springframework.org/schema/mvc
    

    디스패처 서블릿 구성 파일에서.

  5. ==============================

    5.을 사용하는 것은 정적 페이지를위한 상품입니다.

    을 사용하는 것은 정적 페이지를위한 상품입니다.

    @RequestMapping (value = "/", method = RequestMethod.GET)       public String welcome () {             return "index.html";       }

    다른 컨트롤러의 모든 모델이 인덱스 페이지를 다시 가리킬 수도 있으므로 좋은 디자인이 아닙니다.

    <mvc:resources mapping="/" location="/redfresh.html"  />
    

    그런 새로 고침 페이지 만들기

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8"/>
        <meta http-equiv="refresh" content="0;URL='/index'" />
    </head>
    <body>
    </body>
    </html>
    

    컨트롤러에 다음과 같이 색인을 붙일 것을 지시합니다.

    @Controller
    public class indexPageController {
    
     @RequestMapping(value = "/index", method = RequestMethod.GET, produces = "text/html")
        public String index() {       
            return "index";
        }
    }
    
  6. from https://stackoverflow.com/questions/24670327/welcome-file-not-working-with-html-file-in-spring by cc-by-sa and MIT license