2

基本的な Java EE Spring プロジェクトを eclipse (jboss 7.1.1 サーバー、Spring 3.1.2 リリース) で実行しようとしましたが、常に構成ファイルが見つからないことが出力されますが、実際には構成ファイルを適切な場所に配置します。私はウェルカムファイルを構成しませんが、代わりに mvc:view-controller を構成します。

これは私のエラースクリーンショットです

これは web.xml ファイルです。

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee /web-app_3_0.xsd">
<display-name>springupload</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/web-application-config.xml</param-value>
</context-param>
<!-- Loads the Spring web application context -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value/>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- Map all *.spring requests to the DispatcherServlet for handling -->
<servlet-mapping>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

これは web-application-config.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"
   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.0.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.0.xsd">

<!-- Scans for application @Components to deploy -->
<context:component-scan base-package="com.pack" />

<!-- Imports the configurations of the different infrastructure systems of the application -->
<import resource="webmvc-config.xml" />
<!-- <import resource="webflow-config.xml" /> -->
<!-- <import resource="data-access-config.xml" /> -->

    <bean class="org.springframework.web.multipart.commons.CommonsMultipartResolver" id="multipartResolver">
        <property name="maxUploadSize" value="1000000"></property>
    </bean>
</beans>

これは webmvc-config.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"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:aop="http://www.springframework.org/schema/aop"
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
   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">

<!-- Enables controllers mapped with @RequestMapping annotations, formatting annotations @NumberFormat @DateTimeFormat, and JSR 303 style validation -->
<mvc:annotation-driven/>

<mvc:resources mapping="/res/**" location="/, classpath:/META-INF/web-resources/" />
<mvc:view-controller path="/" view-name="hello"/>
<mvc:default-servlet-handler />

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="jspre">
        <property name="prefix" value="/WEB-INF/"/>
        <property name="suffix" value=".jsp"/>
    </bean>

     <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="htmlre">
        <property name="prefix" value="/WEB-INF/"/>
        <property name="suffix" value=".html"/>
    </bean>

</beans>

あなたが写真で見ることができるエラー:

HTTP ステータス 404 - /springupload/WEB-INF/webmvc-config.xml

タイプ ステータス レポート

メッセージ /springupload/WEB-INF/webmvc-config.xml

説明 要求されたリソース (/springupload/WEB-INF/webmvc-config.xml) は利用できません。JBoss Web/7.0.13.Final

開始ページとして構成ファイルを作成する必要があるのに、なぜhtmlおよびjspページを構成するのか本当にわかりませんか?

4

2 に答える 2

2

あなたの構成はOKからそう遠くありません。

私が気づいたことの 1 つは、hello.htmlファイルがルートWebContentフォルダーにあることです。http://localhost:8080/springupload/これは、構成の次の行のために、アクセス時にレンダリングするビューであると思います。

<mvc:view-controller path="/" view-name="hello"/>

これがそうである場合、Spring はこのviewResolverのand/WEB-INF/hello.htmlのために解決しようとしています:prefixsuffix

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="htmlre">
    <property name="prefix" value="/WEB-INF/"/>
    <property name="suffix" value=".html"/>
</bean>

ただし、順序のない 2 つのビュー リゾルバーがあり、Spring は に解決される最初のもののみを取得する/WEB-INF/hello.jspため、404 Not found

解決策をまとめるには、 viewResolver構成に移動hello.html/WEB-INF/て変更することです。webmvc-config.xml

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="jspre">
    <property name="order" value="2" />
    <property name="prefix" value="/WEB-INF/"/>
    <property name="suffix" value=".jsp"/>
</bean>

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="htmlre">
    <property name="order" value="1" />
    <property name="prefix" value="/WEB-INF/"/>
    <property name="suffix" value=".html"/>
</bean>

最後に、URL のコンテンツに直接アクセスすることは想定されていないhttp://localhost:8080/WEB-INF/*ため、ここで試みるすべての結果は404 Not found.

于 2012-10-03T18:13:13.007 に答える
0

構成ファイル名をに変更します[dispatcher servlet name]-servlet.xml

http://static.springsource.org/spring/docs/3.0.x/reference/mvc.html

于 2012-10-03T17:06:37.067 に答える