The starting point for developing a JAX-WS web service is a Java class annotated with the javax.jws.WebService annotation. The @WebService annotation defines the class as a web service endpoint.
A service endpoint interface or service endpoint implementation (SEI) is a Java interface or class, respectively, that declares the methods that a client can invoke on the service. An interface is not required when building a JAX-WS endpoint. The web service implementation class implicitly defines an SEI.
You may specify an explicit interface by adding the endpointInterface element to the @WebService annotation in the implementation class. You must then provide an interface that defines the public methods made available in the endpoint implementation class.
JAX-WS endpoints must follow these requirements:
The implementing class must be annotated with either the javax.jws.WebService or javax.jws.WebServiceProvider annotation.
The implementing class may explicitly reference an SEI through the endpointInterface element of the @WebService annotation, but is not required to do so. If no endpointInterface is specified in @WebService, an SEI is implicitly defined for the implementing class.
The business methods of the implementing class must be public, and must not be declared static or final.
Business methods that are exposed to web service clients must be annotated with javax.jws.WebMethod.
Business methods that are exposed to web service clients must have JAXB-compatible parameters and return types. See Default Data Type Bindings.
The implementing class must not be declared final and must not be abstract.
The implementing class must have a default public constructor.
The implementing class must not define the finalize method.
The implementing class may use the javax.annotation.PostConstruct or javax.annotation.PreDestroy annotations on its methods for life cycle event callbacks.
The @PostConstruct method is called by the container before the implementing class begins responding to web service clients.
The @PreDestroy method is called by the container before the endpoint is removed from operation.
When invoking the remote methods on the port, the client performs these steps:
Uses the javax.xml.ws.WebServiceRef annotation to declare a reference to a web service. @WebServiceRef uses the wsdlLocation element to specify the URI of the deployed service’s WSDL file.
@WebServiceRef(wsdlLocation="http://localhost:8080/helloservice/hello?wsdl")
static HelloService service;Retrieves a proxy to the service, also known as a port, by invoking getHelloPort on the service.
Hello port = service.getHelloPort();The port implements the SEI defined by the service.
Invokes the port’s sayHello method, passing to the service a name.
String response = port.sayHello(name);
JAXB supports the grouping of generated classes in Java packages. A package consists of the following:
A Java class name that is derived from the XML element name, or specified by a binding customization.
An ObjectFactory class, which is a factory that is used to return instances of a bound Java class.
When XML element information can not be inferred by the derived Java representation of the XML content, a JAXBElement object is provided. This object has methods for getting and setting the object name and object value
Custom JAXB binding declarations allow you to customize your generated JAXB classes beyond the XML-specific constraints in an XML schema to include Java-specific refinements, such as class and package name mappings.
JAXB provides two ways to customize an XML schema:
As inline annotations in a source XML schema
As declarations in an external binding customization file that is passed to the JAXB binding compiler
The JAXB annotations defined in the javax.xml.bind.annotations package can be used to customize Java program elements to XML schema mapping.
分享到:
相关推荐
JAX-WS用于SOAP服务,JAX-RS则提供了RESTful服务的支持。 10. **Servlet 3.0+的新特性** - 异步Servlet:允许在后台处理请求,提高响应速度。 - 增强的过滤器和监听器:提供更多的钩子函数,增强应用的控制能力。...
4. **Web服务**:包括SOAP、WSDL和UDDI,以及如何使用Java API for XML Web Services (JAX-WS)和Java API for RESTful Web Services (JAX-RS)创建和消费Web服务。 5. **SOA和Web服务**:了解服务导向架构的概念,...
6. **Web服务**:讨论基于SOAP和RESTful风格的Web服务,包括WSDL、UDDI和JAX-WS、JAX-RS的相关知识。 7. **JavaServer Faces (JSF)**:介绍JSF框架,用于构建用户界面,包括组件库、事件处理和转换验证。 8. **...
在`Gradle-SOAP--A-Gradle-Case-Study-master`中,我们可以预期看到类似的组织。 2. **构建脚本** (`build.gradle`):在这个案例中,`build.gradle`文件将详细说明如何配置Gradle来处理SOAP相关的任务,比如编译...
【Axis实践之Axis入门】 Axis是一个流行的开源SOAP(Simple Object Access ...继续深入学习,你将掌握更多关于Web服务开发的专业知识,如WSDL、SOAP消息结构、服务安全以及与其他技术(如JAX-RPC、JAX-WS)的集成等。
理解WSDL文件结构、SOAP消息格式以及如何通过JAX-WS实现Web服务是高级主题。 6. **JavaMail API**:J2EE提供了发送和接收电子邮件的接口,这对于企业级应用中的通知和通信功能非常重要。 7. **Java Message ...
CXF支持多种协议,包括SOAP、XML-RPC、REST等,并且能够与JAX-WS和JAX-RS标准无缝对接。其主要特性包括:易于使用的编程模型、灵活的消息转换器、高级的性能优化技术以及丰富的工具支持。 #### 二、Spring框架整合 ...
CXF提供了便捷的方式来创建和调用RESTful及SOAP Web服务,并且可以很容易地与其他Java EE规范集成,如JAX-RS、JAX-WS等。 #### 三、Spring+CXF整合概述 Spring框架以其强大的IoC容器和AOP功能,在Java企业级应用...