共计 1280 个字符,预计需要花费 4 分钟才能阅读完成。
下面是一个简单的 Java WebService 实例,使用了 JAX-WS 标准:
- 编写 WebService 接口:
import javax.jws.WebMethod;
import javax.jws.WebService;
@WebService
public interface HelloWorld {
@WebMethod
String sayHello(String name);
}
- 实现 WebService 接口:
import javax.jws.WebService;
@WebService(endpointInterface = "HelloWorld")
public class HelloWorldImpl implements HelloWorld {
@Override
public String sayHello(String name) {return "Hello," + name + "!";}
}
- 配置 Web Service 部署描述文件(web.xml):
WebServiceExample
WebServiceExample
com.sun.xml.ws.transport.http.servlet.WSServlet
com.sun.xml.ws.transport.http.servlet.WSServletContextListener
1
WebServiceExample
/hello
- 配置 Web Service 绑定描述文件(sun-jaxws.xml):
- 使用 JAX-WS 提供的工具生成 Web Service 服务端和客户端代码:
wsimport -keep -p com.example.ws http://localhost:8080/WebServiceExample/hello?wsdl
- 部署到 Servlet 容器(如 Tomcat)并启动。
- 测试 WebService 服务端:
在浏览器中访问http://localhost:8080/WebServiceExample/hello?wsdl
,能够看到生成的 WSDL 文件。
- 测试 WebService 客户端:
import com.example.ws.HelloWorld;
import com.example.ws.HelloWorldImplService;
public class HelloWorldClient {public static void main(String[] args) {HelloWorldImplService service = new HelloWorldImplService();
HelloWorld port = service.getHelloWorldImplPort();
String result = port.sayHello("Alice");
System.out.println(result);
}
}
这个简单的 Java WebService 实例演示了一个简单的问候服务。通过 WebService 接口定义了一个 sayHello
方法,实现类返回一个问候语。客户端通过调用 WebService 接口的方法与服务端进行交互。
丸趣 TV 网 – 提供最优质的资源集合!
正文完
发表至: Java
2023-12-21