码迷,mamicode.com
首页 > 编程语言 > 详细

spring配置jax-ws

时间:2018-02-07 14:56:20      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:cee   post   exp   spring配置   one   name   有一个   style   over   

在spring配置文件中新建bean,在该bean中添加指定的访问地址,注意最后的"/"必须要写。

    @Bean
    public static SimpleJaxWsServiceExporter getSimpleJaxWsServiceExporter(){
        SimpleJaxWsServiceExporter wsServiceExporter = new SimpleJaxWsServiceExporter();
        wsServiceExporter.setBaseAddress("http://localhost:8088/sgyws/");
        return wsServiceExporter;
    }

然后新建一个接口

@WebService
public interface SgyWs {

    @WebMethod
    public String sayHi(); 
}

再有一个实现类,该类上的注解serviceName为ws的服务名,endpointInterface为接口地址。

@WebService(serviceName="sgyService",endpointInterface="com.btw.sgy.webService.SgyWs")
//@SOAPBinding(style=Style.RPC)
@Component
public class SgyWsImpl implements SgyWs{

    @Override
    public String sayHi(){
        System.out.print("hi");
    };
}

最后启动服务即可,访问地址为http://localhost:8088/sgyws/sgyService

spring配置jax-ws

标签:cee   post   exp   spring配置   one   name   有一个   style   over   

原文地址:https://www.cnblogs.com/yxth/p/8425995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!