确实存在用于定义端点地址的特定注释。 实际上,我想删除SPring文件中的属性地址,并直接在impl中移动注释。类。
当前
jaxws:endpoint id =“dataManagerEndPoint”implementor =“#dataManagerService”address =“/ datamanager / v1.0”
@WebService 公共接口DataManagerService
我想改为(如果可能的话)......
jaxws:endpoint id =“dataManagerEndPoint”implementor =“#dataManagerService”
@WebService @EndPointAddress(“/ datamanager/v1.0”) 公共接口DataManagerService
非常感谢,提前, Christophe P。
答案 0 :(得分:0)
@WebService(portName = "PortTypeName", serviceName = "ServiceName", targetNamespace = "http://www.namespace.com", wsdlLocation = "META-INF/wsdlname.wsdl", endpointInterface = "com.package.service.PortTypeName")