MessageSource bean在自定义异常映射器类中注入null

时间:2015-08-10 08:11:20

标签: java spring dependency-injection

我试图理解为什么在下面的代码中将messageSource bean注入null:

@Provider
public class BadRequestExceptionMapper implements ExceptionMapper<BadRequestException>{
@Autowired
MessageSource messageSource;


@Override
public Response toResponse(BadRequestException ex) {
    String message = null;
    try{
    message = messageSource.getMessage(ex.getErrorCode().getErrorKey(),null,null);

    }catch(Exception e){
    e.printStackTrace();
    }
    return Response.status(400).entity(message).type("text/plain")
            .build();
   }

}

以下是我的applicationContext.xml

<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"
xmlns:tx="http://www.springframework.org/schema/tx"
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/tx
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<context:component-scan base-package="com.infonexis" />
<context:annotation-config />

<import resource="applicationPersistence.xml" />
<import resource="applicationService.xml" />
<import resource="applicationContext-datasource.xml" />

<bean id="messageSource"
    class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basename">
<value>MessageResources_en_US</value>
</property>
<property name="cacheSeconds" value="1"/>
</bean>

</beans>

我正在尝试在自定义异常映射器类中自动装配MessageSource bean,但它被注入null,以前它在我从ClassPathXmlApplicationContext加载上下文时工作,如下所示:

@Provider
public class BadRequestExceptionMapper implements ExceptionMapper<BadRequestException>{

@Override
public Response toResponse(BadRequestException ex) {
    String message = null;
    try{
    ApplicationContext context = 
            new ClassPathXmlApplicationContext("applicationContext.xml");
    MessageSource messageSource = 
     (MessageSource)context.getBean("messageSource");

    message = messageSource.getMessage(ex.getErrorCode().getErrorKey(),null,null);

    }catch(Exception e){
    e.printStackTrace();
    }
    return Response.status(400).entity(message).type("text/plain")
            .build();
  }

}

我试过以下

  1. 实施org.springframework.context.MessageSourceAware界面

  2. 将@Component注释添加到BadRequestExceptionMapper类

  3. 尝试注入ReloadableresourceBundleMessageSource而不是使用接口MessageSource

  4. 但一切都失败了。

    正确设置了上下文组件扫描。 如何正确注入MessageSource?

1 个答案:

答案 0 :(得分:0)

我认为你的@Provider在你的web.xml中定义了一些上下文监听器,它可以在spring应用程序上下文监听器之前启动。

尝试将Spring侦听器org.springframework.web.context.ContextLoaderListener放在Web服务侦听器之前,例如com.sun.xml.ws.transport.http.servlet.WSServletContextListener(或)您的任何JAX-RS servlet像泽西这样的倾听者。