SpringBeanAutowiringInterceptor抛出NoSuchBeanDefinitionException

时间:2016-07-08 14:38:06

标签: java spring maven java-ee ejb

我尝试使用@Interceptors(SpringBeanAutowiringInterceptor.class)注释使用Spring将bean自动装配到EJB。问题是,在实例化EJB时,我继续为自动装配的类获取NoSuchBeanDefinitionException。 (我的例子中的Filter类)。

我正在使用Java EE 6应用程序(EJB 3.0),Spring 4.2.2使用Maven管理并在WebSphere 7 AS中运行。

我有以下Spring依赖项:

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>4.2.2.RELEASE</version>
</dependency>
<dependency>
    <groupId>org.springframework.ldap</groupId>
    <artifactId>spring-ldap-core</artifactId>
    <version>2.0.4.RELEASE</version>
    <exclusions>
        <exclusion>
            <artifactId>spring-tx</artifactId>
            <groupId>org.springframework</groupId>
        </exclusion>
    </exclusions>
</dependency>

实施:

@Stateless
@Remote(ServiceRemote.class)
@Interceptors(SpringBeanAutowiringInterceptor.class)
public class Service implements ServiceRemote {

@Autowired
private Filter filter;

...

}

要自动装配的类

@Component
public class FilterImpl implements Filter { ... }

SpringBeanAutowiringInterceptor将查找的beanRefContext.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.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context.xsd">

    <bean id="businessBeanFactory"
        class="org.springframework.context.support.ClassPathXmlApplicationContext">
        <constructor-arg value="classpath*:applicaion-context.xml" />
    </bean>
</beans>

带有bean定义的application-context.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.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">


    <bean class="com.FilterImpl" />

</beans>

这两个XML都在类路径中,因为它们位于src / main / resources /.

我已尝试使用以下代码进行调试,但无法找到有用的内容。

BeanFactoryLocator factoryLocator = ContextSingletonBeanFactoryLocator.getInstance("classpath:beanRefContext.xml");

BeanFactoryReference ref = factoryLocator.useBeanFactory("businessBeanFactory");
BeanFactory factory = ref.getFactory();

FilterImpl instance = factory.getBean(FilterImpl.class);

当第一次实例化EJB时,两个上下文似乎都被加载,因为我得到如下所示的日志。

org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@7730773; root of context hierarchy
org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions Loading XML bean definitions from URL [file:/C:/project/service-module/target/classes/beanRefContext.xml]
org.springframework.context.support.ClassPathXmlApplicationContext prepareRefresh Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@5580558: root of context hierarchy

但是在那之后Spring无法找到我在application-context.xml中定义的bean。

application-context.xml我尝试使用<context:component-scan base-package="com"/>代替<bean class="com.FilterImpl" />,但我得到的结果相同。

我错过了一些配置吗?

编辑:添加了Steve C的建议和上下文加载日志。

3 个答案:

答案 0 :(得分:0)

将您的xml配置文件从src/main/java移至src/main/resources

src/main/java中的文件仅由maven-compiler-plugin处理。

其他资源文件由maven-resources-plugin处理,后者从src/main/resources复制文件。

答案 1 :(得分:0)

您似乎没有在spring xml文件中添加<context:annotation-config/>

答案 2 :(得分:0)

我刚刚找到答案。在<constructor-arg value="classpath*:applicaion-context.xml" />中,applicaion-context.xml应为application-context.xml。当我编辑问题并发布关于加载上下文的日志时,我注意到只有beanRefContext.xml加载了它的定义。没有关于某些解析错误的日志,我只是忽略了这种可能性。现在一切正常。