2

我正在 Java SE 中测试 web 服务,我看到 @Resource 确实有效,这难道不是只在 Container 中吗?或与 CDI ?为什么它也可以在 SE 中使用!?

@WebService
public class Teams {

    @Resource
    private WebServiceContext context;
}

我正在使用发布Endpoint.publish("http://localhost:9876/teams", new Teams());

4

1 回答 1

0

不对。容器将在任何 EJB 组件上注入资源实例。

http://docs.oracle.com/javaee/5/api/javax/annotation/Resource.html

于 2012-09-14T11:46:25.267 回答