作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
有没有办法在 CXF 拦截器中使用 @Inject 或 @EJB?我知道我仍然可以执行 JNDI 查找,但我宁愿避免它。
我觉得很奇怪,JAX-WS 处理程序是受管理的,但 CXF 拦截器不是。有没有可能让他们管理?我正在使用注释将我的拦截器添加到端点(@org.apache.cxf.interceptor.InInterceptors
和 @org.apache.cxf.interceptor.InInterceptors
),可以用配置文件处理吗?
配置:
最佳答案
我已经在 CDI 1.1 的帮助下进行了注入(inject),如下所示。
beans.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
</beans>
cxf-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="callerInfoInterceptor" class="my.CallerInfoInterceptor" />
<cxf:bus>
<cxf:inInterceptors>
<ref bean="callerInfoInterceptor" />
</cxf:inInterceptors>
<cxf:properties>
......
.....
</cxf:properties>
</cxf:bus>
</beans>
CallerInfoInterceptor.java(CXF拦截器)
public class CallerInfoInterceptor extends AbstractPhaseInterceptor<Message> {
@Inject CallerInfoBean callerInfo; // bean
public CallerInfoInterceptor() {
super(Phase.RECEIVE);
}
@Override
public void handleMessage(Message message){
...........
if (callerInfo == null) {
callerInfo =
javax.enterprise.inject.spi.CDI.current().select(CallerInfoBean.class).get();
}
}
关于java - 如何在 CXF 拦截器上下文中使用 @Inject 或 @EJB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32135234/
我是一名优秀的程序员,十分优秀!