本课题主要解决不同平台和不同应用系统之间的数据转换、数据同步和多个数据源的共享集成问题。为解决该问题,采用基于Web服务的方式来进行数据的交互,主要要考虑如何保持两个系统中的数据能实时同步更新(增加、删除和修改)。
用cxf-2.6.1+spring 3.1.0+ hibernate3.6 版本开发web services
服务端的开发
interface IHelloService
package com.dx.service;
import javax.jws.WebMethod;
import javax.jws.WebService;
import com.dx.model.User;
@WebService
public interface IHelloService {
@WebMethod
public String sayHello(String username);
@WebMethod
public User getUser(int id);
@WebMethod
public void add(User user);
}
IHelloService 的实现 IHelloServiceImpl
package com.dx.service.impl;
import javax.jws.WebMethod;
import javax.jws.WebService;
import com.dx.dao.BaseDao;
import com.dx.model.User;
import com.dx.service.IHelloService;
@WebService
public class IHelloServiceImpl implements IHelloService{
private BaseDao baseDao;
@Override
@WebMethod
public String sayHello(String username) {
return "Hello "+username;
}
@Override
@WebMethod
public User getUser(int id) {
User user = new User();
user.setName("杨钰莹");
user.setId(id);
return user;
}
@Override
@WebMethod
public void add(User user) {
baseDao.save(user);
}
public BaseDao getBaseDao() {
return baseDao;
}
public void setBaseDao(BaseDao baseDao) {
this.baseDao = baseDao;
}
}
spring applicationContext-user.xml的配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd">
<jaxws:endpoint id="hellos" address="/Hellows" implementor="#helloService">
</jaxws:endpoint>
<bean id="helloService" class="com.dx.service.impl.IHelloServiceImpl">
<property name="baseDao" ref="baseDao"></property>
</bean>
</beans>
web.xml的配置
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>cxf</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
classpath:context/applicationContext-*.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>cxf</servlet-name>
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>cxf</servlet-name>
<url-pattern>/services/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>60</session-timeout>
</session-config>
</web-app>
好了,接下来部署启动tomcat ,在浏览器输入 http://localhost:8080/cxf_web_010/services
在出现的页面上 点击WSDL : {http://impl.service.dx.com/}IHelloServiceImplService
出现页面
<?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions name="IHelloServiceImplService" targetNamespace="http://impl.service.dx.com/" xmlns:ns1="http://service.dx.com/" xmlns:ns2="http://schemas.xmlsoap.org/soap/http" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://impl.service.dx.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:import location="http://localhost:8080/cxf_web_010/services/Hellows?wsdl=IHelloService.wsdl" namespace="http://service.dx.com/" />
- <wsdl:binding name="IHelloServiceImplServiceSoapBinding" type="ns1:IHelloService">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="sayHello">
<soap:operation soapAction="" style="document" />
- <wsdl:input name="sayHello">
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output name="sayHelloResponse">
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="add">
<soap:operation soapAction="" style="document" />
- <wsdl:input name="add">
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output name="addResponse">
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="getUser">
<soap:operation soapAction="" style="document" />
- <wsdl:input name="getUser">
<soap:body use="literal" />
</wsdl:input>
- <wsdl:output name="getUserResponse">
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:service name="IHelloServiceImplService">
- <wsdl:port binding="tns:IHelloServiceImplServiceSoapBinding" name="IHelloServiceImplPort">
<soap:address location="http://localhost:8080/cxf_web_010/services/Hellows" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
现在web services 已经发布了,下一章编写客户端
分享到:
相关推荐
Java Web服务开发是构建分布式应用程序的关键技术,它允许不同系统之间的数据交换和功能共享。Web服务通常基于开放标准,如XML(可扩展标记语言)、SOAP(简单对象访问协议)、WSDL(Web服务描述语言)以及UDDI...
WebService是一种基于XML的Web应用程序接口标准,它允许不同的系统和服务之间进行互操作,通过HTTP协议传输数据,使得分布式系统间的通信变得更加简单。WebService的核心技术包括SOAP(Simple Object Access ...
源码部分可能涵盖了上述概念的实际实现,例如使用Spring Boot构建服务,利用Apache CXF或Spring Cloud Netflix Eureka进行服务注册与发现,使用Apache Camel或Netflix Zuul实现服务路由,以及通过Apache Kafka或...
Web服务是实现SOA的主要技术手段,通常基于WSDL(Web Services Description Language)描述服务接口,使用SOAP(Simple Object Access Protocol)进行数据交换,通过UDDI(Universal Description, Discovery, and ...
- **CXF与Servicemix**:Apache CXF是一个流行的Web服务框架,它与Servicemix紧密集成,提供方便的服务开发和发布功能。 - **配置CXF组件**:在Servicemix中,需要配置CXF服务引擎,包括指定服务接口和实现类,...
3. ConsulConsul 是 HashiCorp 公司开发的一款分布式服务发现和配置工具,支持多数据中心,提供了服务发现、健康检查、KV 存储、多数据中心的解决方案。Consul 以其简单易用和健壮性受到欢迎,可以与多种编程语言...
4. **异构系统集成**:SOA能够轻松连接不同平台、技术和数据源,实现跨系统的互操作性。 在SOA实现过程中,涉及的关键技术主要包括: 1. **Web服务**:Web服务是SOA中最常见的服务实现方式,如SOAP(Simple Object...
### WebService技术与Java中的CXF框架应用 #### 一、WebService概述 WebService是一种跨语言、跨平台的应用间通信协议,允许在分布式环境下构建松耦合、标准的应用组件。通过XML、SOAP、WSDL和UDDI等标准,...
- **Apache CXF**:一套智能Web服务解决方案(JAX-WS)。 - **Apache MINA**:一款网络框架。 - **Apache ServiceMix**:最流行且功能强大的分布式开源企业服务总线(ESB)和JBI容器之一。 #### 二、架构与特性 ...
《Mule in Action》一书深入探讨了Mule——一个轻量级消息框架与高度分布式的对象代理系统,为读者提供了全面的理论与实践指导。本书由David Dossot和John D'Emic共同撰写,旨在帮助开发者掌握Mule的核心功能与配置...
Mule ESB,全称Mule Enterprise Service Bus,是一个基于Java的企业服务总线,专注于简化分布式系统的集成。作为轻量级的消息框架和整合平台,Mule ESB遵循Enterprise Integration Patterns(EIP)的设计原则,旨在...