RESTFul Service中如果要注入EJB实例,常规的@Inject将不起作用,在Jboss中,应用甚至都启动不起来(因为@Inject注入失败),解决方法很简单:将@Inject换成@EJB
参考代码:
CityInvoker是一个Stateless的EJB
package test; import javax.ejb.Stateless; import ... @Stateless public class CityInvoker { public CityResponse getCity() { CityResponse cityResponse = null; CityService cityService = ApplicationContextUtils.getCityService(); try { cityResponse = cityService.findCityByCode(RequestBuilder .buildCityFindRequest()); } catch (LMSException e) { e.printStackTrace(); } return cityResponse; }
下面是在RESTFul Service中注入的示例:
package test.rest; import javax.ejb.EJB; import javax.ws.rs.*; import javax.ws.rs.core.MediaType; import javax.xml.bind.JAXBElement; import javax.xml.namespace.QName; @Path("/") public class TestService { final String XMLNS_NAMESPACE = "http://yjmyzz.cnblogs.com/rest/service"; final String ROOT_NODE = "root"; @EJB CityInvoker cityInvoker; @GET @Path("/findCity") @Produces(MediaType.APPLICATION_XML) public JAXBElement<CityDto> findCity() { JAXBElement<CityDto> result = new JAXBElement<CityDto>(new QName( XMLNS_NAMESPACE, ROOT_NODE), CityDto.class, cityInvoker .getCity().getCities().get(0)); return result; }
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦