我正在 Java SE 中测试 web 服务,我看到 @Resource 确实有效,这难道不是只在 Container 中吗?或与 CDI ?为什么它也可以在 SE 中使用!?
@WebService
public class Teams {
@Resource
private WebServiceContext context;
}
我正在使用发布Endpoint.publish("http://localhost:9876/teams", new Teams());