首页 > 解决方案 > 找不到类 org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer

问题描述

我们已将 Project Spring 版本从3.1.2.RELEASE升级到4.3.25.RELEASE

我没有发现任何与代码相关的错误。但是 Junit 测试用例因抛出错误而失败

找不到类 [org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer

错误日志

Tests run: 10, Failures: 0, Errors: 10, Skipped: 0, Time elapsed: 3.979 sec <<< FAILURE!
testMergeInProgressStatus(com.perceptive.portal.idm.domain.AccountTest)  Time elapsed: 0.021 sec  <<< ERROR!
java.lang.IllegalStateException: Failed to load ApplicationContext
    at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:124)
    at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:83)
    ....
    ....
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException:
 Error creating bean with name 'userAdminViewController': 
Unsatisfied dependency expressed through field 'userProfileService'; nested exception is 
org.springframework.beans.factory.CannotLoadBeanClassException: 
**Cannot find class [org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer]** 
for bean with name 'org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer#0' defined in class path resource [UserAdminTest-portlet.xml]; 
nested exception is java.lang.ClassNotFoundException: org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:586)
    at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:87)

UserAdminTest-portlet.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:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:util="http://www.springframework.org/schema/util"
    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
                           http://www.springframework.org/schema/util
                           http://www.springframework.org/schema/util/spring-util-3.0.xsd">


    <bean class="org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer" />

    <bean id="velocityEngineFactoryBean" class="org.springframework.ui.velocity.VelocityEngineFactoryBean">
     <property name="resourceLoaderPath" value="/WEB-INF/classes/mailTemplates/"/>
   </bean>

    <bean
        class="org.springframework.web.portlet.mvc.annotation.AnnotationMethodHandlerAdapter">
        <property name="webBindingInitializer">
            <bean
                class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
                <property name="validator" ref="hibernateValidator" />
            </bean>
        </property>

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

    <bean id="messageSource"
        class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basenames">
            <list>
                <value>content.messages</value>
            </list>
        </property>
    </bean> 
</beans>

相同的代码可以正常工作,具有以下依赖项

<spring.version>3.0.5.RELEASE</spring.version>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8</version>
      <scope>test</scope>
    </dependency>

作为升级的一部分,我们已将上述依赖项更改为以下依赖项

<spring.version>4.3.25.RELEASE</spring.version>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>

具有上述依赖项,它在执行测试用例时抛出此异常 找不到类 org.springframework.web.context.support.ServletContextPropertyPlaceholderConfigurer

无论如何,我已经将 spring-xx-xsd 模式更改为 4.0 但没有运气

标签: javaspringhibernatejunitwebsphere

解决方案


谢谢M.deinum

我遵循了您的建议,并通过做更多的事情解决了这个问题

将此代码放在UserAdminTest-portlet.xml 中

    <bean
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="ignoreUnresolvablePlaceholders" value="true"/>
        <property name="ignoreResourceNotFound" value="false"/>
        <property name="order" value="1" />

    </bean>

之后它抛出了这个

java.lang.NoClassDefFoundError: org/hibernate/validator/spi/resourceloading/ResourceBundleLocator

为此,在 pom.xml 中,我已将休眠验证器版本升级为

<hibernate.validator.version>6.1.0.Final</hibernate.validator.version>

然后我又遇到了一个问题

javax.validation.ValidationException: HV000183: 
Unable to initialize 'javax.el.ExpressionFactory'. Check that you have the EL dependencies on the classpath, 
or use ParameterMessageInterpolator instead

我已经放置了 javax-el 依赖项

<dependency>
    <groupId>org.glassfish</groupId>
    <artifactId>javax.el</artifactId>
    <version>3.0.1-b08</version>
</dependency>

然后,建立成功。


推荐阅读