0

私のプロジェクトは「/」パターンでうまく機能します。しかし、js と css を接続すると、ディスパッチャ サーブレットが css と js をマップしないため、期待どおりに機能しません。「.htm」パターンを指定すると、css と js は機能しますが、すべてのページ (「/polls/categories」など) が機能しません。これは私の web.xml ファイルです。

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

そしてディスパッチャーサーブレット:

<?xml version="1.0" encoding="UTF-8"?>
<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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

    <bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver" 
            p:prefix="/WEB-INF/jsp/" p:suffix=".jsp" p:order="1"/>

</beans>
4

1 に答える 1

0

このビットを dispatcher-servlet.xml に追加します。

<resources mapping="/resources/**" location="/resources/" />

この場所内に静的リソースを配置する必要があります。

PROJECT_ROOT/src/main/webapp/resources

次に、次のようにビューからアクセスします (css の例):

<link rel="stylesheet" href="<c:url value="${webappRoot}/resources/css/style.css" />" type="text/css">

回答の更新 (dispatcher-servlet.xml) :

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

    <!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->

    <!-- Enables the Spring MVC @Controller programming model -->
    <annotation-driven />

    <!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
    <resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
    <beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/jsp/" />
        <beans:property name="suffix" value=".jsp" />
            <beans:property name="order" value="1" />
    </beans:bean>


</beans:beans>

ここでこのビットを使用して何を達成しようとしているのかわかりません:

<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

ただし、コントローラーを作成しようとしている場合は、次のようにクラスに注釈を追加するだけです。

@Controller
class ControllerClassNameHandlerMapping{
....body omitted..
}

更新 2

これが役に立たない場合、なぜ物事を難しい方法で行うのでしょうか。スプリング ツール スイートをダウンロードします (Google で簡単に検索できます)。このツールを使用すると、新しい Spring プロジェクトを作成するだけで、ツールは有効な構成で適切な構造を作成します。そして、これをチェックしてください、本当に短くて簡潔です:

https://github.com/SpringSource/spring-mvc-showcase/blob/master/MasteringSpringMVC3.pdf?raw=true

于 2013-01-04T10:34:52.770 に答える