|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
通过视频学习比传统的大课堂学习更适合成人化的学习规律。有人说大课堂气氛好,学习氛围浓,热闹,可以认识很多人。
之前经常用CXF、Axis2、XFire等来开辟分离Java言语来开辟WebService使用,如许的优点是用处广,天真,别的一个主要缘故原由是我们的临盆情况是Java5。
但实践上Java6中已撑持用Java开辟WebService使用了,并且很便利。如许就年夜年夜削减了项目安装部署的价值,由于选择开源的框架依附大批第三方包,程序的尺寸倍增。
上面是一个Java6开辟WebService的进门例子。
package lavasoft;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;
/**
* Java6开辟WebService进门
*
* @author leizhimin 2009-11-13 16:10:44
*/
@WebService
public class Java6WebService {
/**
* Web服务中的营业办法
*
* @return 一个字符串
*/
public String doSomething() {
return "Hello Java6 WebService!";
}
public static void main(String[] args) {
//公布一个WebService
Endpoint.publish("http://192.168.14.117:8080/java6ws/lavasoft.Java6WebService", new Java6WebService());
}
}
运转后,在扫瞄器中会见http://192.168.14.117:8080/java6ws/lavasoft.Java6WebService?wsdl会失掉wsdl以下:
<?xml version="1.0" encoding="UTF-8" ?>
<!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RIs version is JAX-WS RI 2.1.6 in JDK 6.
-->
<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RIs version is JAX-WS RI 2.1.6 in JDK 6.
-->
<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://lavasoft/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/"
targetNamespace="http://lavasoft/" name="Java6WebServiceService">
<types>
<xsd:schema>
<xsd:import namespace="http://lavasoft/"
schemaLocation="http://192.168.14.117:8080/java6ws/lavasoft.Java6WebService?xsd=1"/>
</xsd:schema>
</types>
<message name="doSomething">
<part name="parameters" element="tns:doSomething"/>
</message>
<message name="doSomethingResponse">
<part name="parameters" element="tns:doSomethingResponse"/>
</message>
<portType name="Java6WebService">
<operation name="doSomething">
<input message="tns:doSomething"/>
<output message="tns:doSomethingResponse"/>
</operation>
</portType>
<binding name="Java6WebServicePortBinding" type="tns:Java6WebService">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="doSomething">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<service name="Java6WebServiceService">
<port name="Java6WebServicePort" binding="tns:Java6WebServicePortBinding">
<soap:address location="http://192.168.14.117:8080/java6ws/lavasoft.Java6WebService"/>
</port>
</service>
</definitions>
<p>
在1995年5月23日以“Java”的名称正式发布了。 |
|