如何将合作者接入泽西资源?

问题描述 投票:5回答:2

我有一个方法来启动我的应用程序。

public void start() throws IOException {
    final Map<String, String> initParams = new HashMap<String, String>();
    initParams.put("com.sun.jersey.config.property.packages", "com.example");
    threadSelector = GrizzlyWebContainerFactory.create(baseUri, initParams);
}

我有一个 泽西岛 资源类。

@Path("/notification")
public class NotificationResource {
    // HOW DO I INJECT THIS GUY?
    private MySampleCollabolator  mySampleCollabolator;    

    @POST
    public void create() {
        System.out.println("Hello world"); 
    }
}

处理依赖关系的正确方法是什么?我想让我的资源与其他对象进行通信,如何将它们连线?

java jersey
2个回答
6
投票

您可以实现 InjectableProvider. 例如: :

@Provider
public class FooProvider
    implements InjectableProvider<Resource, Type> {

    public ComponentScope getScope() {
        return ComponentScope.PerRequest;
    }

    public Injectable getInjectable(ComponentContext ic, Resource resource, Type type) {
        return new Injectable() {
            public Object getValue() {
                return new Foo();
            }
        };
    }
}

然后在你的资源中注释字段。

@Resource private Foo foo;


1
投票

如果你对使用spring很满意,那么最好的方法就是使用 泽西春天api 模块(作为额外的依赖安装)。它与Jersey同步发布。

列表中的 javadoc页面 有一个很好的例子让你开始。

© www.soinside.com 2019 - 2024. All rights reserved.