码迷,mamicode.com
首页 > 其他好文 > 详细

jdk1.8无法使用cxf

时间:2018-07-04 01:10:07      阅读:1179      评论:0      收藏:0      [点我收藏+]

标签:res   web   div   import   service   inter   system   接口   str   

package com.rg2.webservice.impl;

import javax.xml.ws.Endpoint;

import com.rg2.webservice.HelloWorld;

public class Server {

    public static void main(String[] args) {
        System.out.println("web service start");
        HelloWorld implementor = new HelloWorldImpl();
        String address = "http://localhost/helloWorld";
        Endpoint.publish(address, implementor);//jdk实现暴露webservice接口
        System.out.println("web service started");
    }

}
package com.rg2.webservice.impl;

import javax.jws.WebService;

import com.rg2.webservice.HelloWorld;

@WebService
public class HelloWorldImpl implements HelloWorld {

    @Override
    public String say(String str) {
        return "hello"+str;
    }

}
package com.rg2.webservice;

import javax.jws.WebService;

@WebService
public interface HelloWorld {

    public String say(String str);
}

 

jdk1.8无法使用cxf

标签:res   web   div   import   service   inter   system   接口   str   

原文地址:https://www.cnblogs.com/zhengyuanyuan/p/9261238.html

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