我使用最新的springsourcetoolsuite(STS)版本2.5.0(基于Eclipse),在启动时收到以下错误消息:
An internal error occurred during: "Processing Dirty Regions".
org/springframework/aop/config/AbstractInterceptorDrivenBeanDefinitionDecorator
打开我的应用程序时出错-配置.xml
An internal error occurred during: "Initialize Beans Graph 'app-config.xml'".
org/springframework/aop/config/AbstractInterceptorDrivenBeanDefinitionDecorator
<?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 the classpath of this application for @Components to deploy as beans -->
<context:component-scan base-package="com.domain.project" />
<!-- Application Message Bundle -->
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename" value="/WEB-INF/messages/messages" />
<property name="cacheSeconds" value="0" />
</bean>
<!-- Configures Spring MVC -->
<import resource="mvc-config.xml" />
</beans>
有人知道我怎么解决这个问题吗?