我正试图使用以下注释在Weblogic 12c中部署一个Web服务:
@SchemaValidation
@BindingType(javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING)
@WebService(serviceName = "xxxxx",
targetNamespace = "http://bla/BusinessServices/yyy/xxxxx/V1",
wsdlLocation = "META-INF/wsdl/zzz/yyy/xxxxx/V1/xxxxxConcrete.wsdl",
portName = "xxxxxPort",
endpointInterface = "ble.businessservices.yyy.xxxxx.v1.xxxxx")
//@Transactional(value= Transactional.TransactionFlowType.SUPPORTS, version= Transactional.Version.WSAT12)
@Stateless
@SecurityPolicies(@SecurityPolicy(uri = "my_policy"))
@DeclareRoles("my-role")
@Interceptors({InterceptorClass1.class, InterceptorClass2.class, InterceptorClass3.class})
public class xxxxxV1 extends HttpServlet implements xxxxx {...}
我使用web.xml来定义servlet别名,使用weblogic.xml文件来定义要使用的上下文根。
问题是,如果我离开@Stateless注释,在部署时会出现以下异常:
Target state: deploy failed on Server services_server
javax.naming.NameAlreadyBoundException: my-webservice-name-impl-1.0.0.0-SNAPSHOT.war#MyWebServiceName is already bound; remaining name 'app/wsee'
at weblogic.deploy.api.tools.deployer.Jsr88Operation.report(Jsr88Operation.java:547)
at weblogic.deploy.api.tools.deployer.Deployer.perform(Deployer.java:140)
at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:88)
at weblogic.utils.compiler.Tool.run(Tool.java:158)
at weblogic.utils.compiler.Tool.run(Tool.java:115)
at weblogic.Deployer.run(Deployer.java:74)
... 15 more
另一方面,如果我删除web.xml,我可以毫无错误地进行部署,但我的web服务的URL当然不是我想要定义的:它使用/portName
/serviceName
URL。
而且,如果我删除@Stateless注释,我会得到所需的URL,但拦截器会被忽略,这在逻辑上是不可接受的。
我尝试过使用@Transactional
注释(请参阅上面注释的代码),但拦截器一直被忽略。
有人知道我缺了什么吗?理想情况下,我会使用web.xml和@Transactional并进入拦截器。
谢谢大家!
找到了一个让一切都按需工作的变通方法:委派模式。
webservice类现在有以下注释:
@SchemaValidation
@BindingType(javax.xml.ws.soap.SOAPBinding.SOAP12HTTP_BINDING)
@WebService(serviceName = "xxxxx",
targetNamespace = "http://bla/BusinessServices/yyy/xxxxx/V1",
wsdlLocation = "META-INF/wsdl/zzz/yyy/xxxxx/V1/xxxxxConcrete.wsdl",
portName = "xxxxxPort",
endpointInterface = "ble.businessservices.yyy.xxxxx.v1.xxxxx")
@Transactional(value= Transactional.TransactionFlowType.SUPPORTS, version= Transactional.Version.WSAT12)
@SecurityPolicies(@SecurityPolicy(uri = "my_policy"))
public class xxxxxV1 extends HttpServlet implements xxxxx {...}
然后,我使用具有以下注释的委托类xxxxxV1Delegate
:
@Stateless
@DeclareRoles("my-role")
@Interceptors({InterceptorClass1.class, InterceptorClass2.class, InterceptorClass3.class})
public class xxxxxV1Delegate {...}
在这个类中,所有的实现都完成了(基本上是复制粘贴webservice类中的内容并删除@Override
)
webservice类将注入一个xxxxxV1Delegate
并包含所有@Override
方法。每个方法只会在委托类中调用完全相同的方法。