There is a specific annotation for determining the endpoint address. In fact, I want to remove the attribute address in the SPring file and transfer the annotation directly to impl. class.
Current:
jaxws: endpoint id = "dataManagerEndPoint" executor = "# dataManagerService" address = "/datamanager/v1.0"
@WebService open interface DataManagerService
I would like to change (if possible) ...
jaxws: endpoint id = "dataManagerEndPoint" executor = "# dataManagerService"
@WebService @EndPointAddress ("/datamanager/v1.0") public interface DataManagerService
Thank you very much in advance Christoph P.