使用 spring bean 作为 Jax-RS 资源

Use spring bean as Jax-RS resource

我想知道是否可以使用基于 Java 的配置(提供所有 Jax-RS 注释、@Path 等等)在 Spring 中实例化一个 bean,以及然后告诉 Jersey 使用那个 bean 作为资源,避免 Jersey 实例化一个新的 class。

编辑:如果可能的话,我想避免像您在此处链接的答案中那样用 @Component 或 @Service 注释我的 bean(感谢您的及时反应!)

提前致谢 朱利奥

阅读这个答案 () 很有帮助:

我发现 bean/resource 上的 @Component 注释(通过 Java 配置创建)需要使 Jersey 正确使用 Spring 实例化 bean,避免它创建一个新实例。

感谢支持:)