是否可以将Spring bean注入RestEasy @Path类?我设法使用@InjectParam注释使用Jersey,但由于其他一些原因,我需要切换到RestEasy,我似乎无法找到一种方法(尝试好的”javax.inject.Inject,但没什么.
编辑
此解决方案有效:
http://www.mkyong.com/webservices/jax-rs/resteasy-spring-integration-example/
但它不是注射..我仍然喜欢更优雅的东西.
最佳答案
使用Spring的@Component简单地注释你的RestEasy类,然后使用Spring的@Autowired注入你的bean.不要忘记在spring配置中包含annotation-config和component-scan元素.
原文链接:https://www.f2er.com/spring/432510.html