0

ビュー リゾルバーの作成中に次のエラーが発生します。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'viewResolver' defined in ServletContext resource [/WEB-INF/webmvc-config.xml]: 
Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: 
Failed to convert property value of type 'java.lang.String' to required type 'java.lang.String' for property 'prefix'; 
nested exception is java.lang.IllegalArgumentException: No class 'java.lang.String' was registered

私の春のwebmvc設定は次のようになります:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:p="http://www.springframework.org/schema/p"
    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-3.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

    <context:component-scan base-package="com.mycompany.web" use-default-filters="false">
        <context:include-filter expression="org.springframework.stereotype.Controller" type="annotation" />
    </context:component-scan>

    <mvc:annotation-driven conversion-service="conversionService" />

    <bean id="conversionService" class="org.springframework.format.support.FormattingConversionServiceFactoryBean"/>

    <bean class="org.springframework.data.repository.support.DomainClassConverter">
        <constructor-arg ref="conversionService"/>
    </bean>

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

</beans>

conversionService と何か関係がありますか?

4

1 に答える 1

1

カスタム コンバーターまたはフォーマッターを登録する必要がない場合は、mvc:annotation-driven 要素から conversionService Bean 宣言と conversion-service 属性を削除してみてください。

<mvc:annotation-driven/>デフォルトの書式設定ルールを有効にするだけで十分です。

http://docs.spring.io/spring/docs/3.2.4.RELEASE/spring-framework-reference/html/validation.html#format-configuring-formatting-mvc

于 2013-10-23T02:36:50.370 に答える