0

我正在使用弹簧配置文件,如

<beans:bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"  
            p:basenames="WEB-INF/i18n/messages,WEB-INF/i18n/application" 
            p:fallbackToSystemLocale="false" />         

<beans:bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
    <beans:property name="validationMessageSource" ref="messageSource" />
</beans:bean>

<annotation-driven validator="validator" />

<resources location="/, classpath:/META-INF/web-resources/" mapping="/resources/**" />

<default-servlet-handler/>

...

当我运行代码时,我得到错误

org.springframework.beans.factory.BeanCreationException: Error creating bean with 
name 'validator' defined in ServletContext resource 
[/WEB-INF/spring/appServlet/servlet-context.xml]: Error setting property 
values; nested exception is org.springframework.beans.PropertyBatchUpdateException;
nested PropertyAccessExceptions (1) are:
PropertyAccessException 1: org.springframework.beans.MethodInvocationException:  
Property 'validationMessageSource' threw exception; nested exception is 
java.lang.NoClassDefFoundError: org/hibernate/validator/resourceloading
/ResourceBundleLocator

为什么我收到这个错误 o 用 messageSource 定义了 bean?

谢谢

4

2 回答 2

2

您使用的 Hibernate Validator 版本不正确。Spring 支持4.x。Spring 4+ 将支持Hibernate 5.x。

官方问题报告 - https://jira.springsource.org/browse/SPR-10466

于 2013-06-07T17:15:43.693 回答
1

我通过将此依赖项添加到我的 maven pom 中解决了这个问题。

   <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator</artifactId>
        <version>4.3.1.Final</version>
    </dependency>
    <dependency>
    <groupId>javax.validation</groupId>
    <artifactId>validation-api</artifactId>
    <version>1.1.0.Final</version>
    </dependency>

我正在使用弹簧框架 4.0.0.RELEASE

于 2014-03-10T05:51:41.023 回答