如何在JAX-WS Web服务中全局配置目标命名空间?

前端之家收集整理的这篇文章主要介绍了如何在JAX-WS Web服务中全局配置目标命名空间?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有很多用@WebService(targetNamespace =“mynamespace”)注释的端点.每个@WebResult和@WebParam都有相同的targetNamespace =“mynamespace”定义.

有没有办法将JAX-WS(Metro实现)配置为默认使用“mynamespace”作为targetNamespace?

我想使用没有任何属性的注释,并删除重复的声明,就像约定配置.

解决方法

仅将targetNamespace放在服务端点接口或服务实现中
豆.
/**
* Annotated Implementation Object
*/
@WebService(
    name = "CustomerService",targetNamespace = "http://org.company.services"
)
public class CustomerService {
    @WebMethod
    @WebResult(name="CustomerRecord")
    public CustomerRecord locateCustomer(
        @WebParam(name="FirstName") String firstName,@WebParam(name="LastName") String lastName,@WebParam(name="Address") USAddress addr) {
        ...
    }
};

如果@WebResult或@WebParam没有targetNamespace,则默认为
targetNamespace for
Web服务.

另一方面,如果您不需要使用JAX-B进行自定义,则可以避免使用所有注释并仅使用@WebService.

JSR-181 Web Services Metadata for the JavaTM Platform中查看更多

原文链接:https://www.f2er.com/html/225822.html

猜你在找的HTML相关文章