依赖注入注释RESTful服务

时间:2013-06-08 14:06:54

标签: java rest java-ee dependency-injection

我有一个经典的DAO和服务层。对于我都有接口。 使用@WebService来保护服务层,然后我还有RESTful crud方法的层。 我想对DAO和Services使用依赖注入。我不知道应该使用哪些注释将Service注入RESTful服务。

这是片段:

 @Path("/items")
  public class ItemsResource{

      @Context
      UriInfo uriInfo;
      @Context
      Request request;

          //annotations....
      private IService itemService;

       public ItemsResource(IService itemService){
       this.itemService=itemService;
        }
            //methods...

所以我的问题是如何将itemService注入我的RESTful服务?我应该使用哪种注释? 我不使用Spring Framework。

1 个答案:

答案 0 :(得分:0)

您是否使用JSR330@Inject进行了尝试?

您可能想要检查的一些框架(除了spring):