6

web.xml でウェルカム ファイルを指定しましたが、アプリケーションを実行すると、404 エラーが表示されますhttp://172.16.2.16:8080/sampletest/

春の募集です。

web.xml

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

Eclipse ルナ、Java 8、Tomcat 8、および Maven フレームワークを使用しています。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;
    }
}
4

6 に答える 6

15

<mvc:default-servlet-handler/>dispatcher-servlet.xml に追加してみてください。

詳しくはこちらをご覧ください。

于 2014-07-10T13:35:06.417 に答える
6

すべての受信リクエストをdispatcherここにマッピングしました。

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

したがってURL、アプリケーションに対するすべてのリクエストは、「/」がすべての受信リクエストをマップするため、ディスパッチャー内に入ります。アプリケーションサーバーログでスタックトレースを確認してください

アップデート:

「/」パターンのハンドラーがないため、次の警告が表示されます。

警告: 'dispatcher' という名前の DispatcherServlet で、URI [/AccelFlow/] の HTTP 要求のマッピングが見つかりません

以下のオプションのいずれかを実行できます。

  1. 「/」を含む URL をコントローラーにマップする
  2. .htm or .do必要に応じて、Spring ディスパッチャーに特定の 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;
}
于 2014-07-10T07:05:32.440 に答える
4

web.xml に次のように記述すると、起動時にデフォルトですべての受信リクエストが「/」パターンにマッピングされます。

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

アップデート:

  1. デフォルト ビューの Controller メソッドをマップしてみます。

    @RequestMapping(value = "/", method = GET)
    public String welcome() {
        return "index";
    }
    
  2. viewresolver を dispather-servlet.xml に追加します。

    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/"
          p:suffix=".jsp" />
    
  3. 自動的にSpringがデフォルトでインデックスページを検索するため、web.xmlからウェルカムファイルを削除します。

    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    
于 2015-10-30T14:20:02.323 に答える
0

使用<mvc:resources mapping="/" location="/index.html" />は静的ページ用の商品ですが、に変更します

@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";
    }
}
于 2016-01-19T10:18:11.100 に答える
0

ウェルカム ファイルは、次の変更を使用してアクセスできます。

変更 1. 次のようにディスパッチャにリソース パスを追加します。

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

変更 2. 次のようなコントローラー ハンドラーを追加します。

     @Controller
      public class RestController {

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

     }

変更点 3: index.html ファイルは、プロジェクトの WebContent フォルダーにある必要があります。

注 : ディスパッチャ サーブレット ファイルに mvc Bean を追加できない場合は、追加します。

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

ディスパッチャーサーブレット構成ファイル。

于 2015-12-30T13:49:27.897 に答える