jdk1.8无法使用cxf
Posted zhengyuanyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jdk1.8无法使用cxf相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
java中使用cxf 发布webservice 成功发布但无法访问
无法在 Spring Boot 应用程序之上使用 CXF 运行 swagger
AndroidStudio2.1.2版本使用jdk1.7完美创建工程(不用jdk1.8)
AndroidStudio2.1.2版本使用jdk1.7完美创建工程(不用jdk1.8)
使用 CXF JaxWsServerFactoryBean 异常无法从 Bus 中找到任何已注册的 HttpDestinationFactory