1.创建项目
- mvn archetype:generate -DarchetypeCatalog=Internal
选择19,创建web项目
2.生成eclipse项目,参见文章
3.修改web.xml
- <?xml version="1.0" encoding="UTF-8"?>
- <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
- id="WebApp_ID" version="2.5">
- <display-name>Archetype Created Web Application</display-name>
- <listener>
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
- </listener>
- <!-- 设置Spring容器加载配置文件路径 -->
- <context-param>
- <param-name>contextConfigLocation</param-name>
- <param-value>WEB-INF/applicationContext.xml</param-value>
- </context-param>
- <listener>
- <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
- </listener>
- <servlet>
- <servlet-name>CXFService</servlet-name>
- <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
- </servlet>
- <servlet-mapping>
- <servlet-name>CXFService</servlet-name>
- <url-pattern>/ws/*</url-pattern>
- </servlet-mapping>
- </web-app>
4.创建webservice接口
- package com.sysware.demo.app.service.inf;
- import javax.jws.WebMethod;
- import javax.jws.WebParam;
- import javax.jws.WebResult;
- import javax.jws.WebService;
- import com.sysware.demo.app.model.RetInfo;
- @WebService
- public interface IGetInfoService
- {
- @WebMethod(operationName = "add")
- @WebResult(name = "result")
- public int add(@WebParam(name = "num1") int num1,
- @WebParam(name = "num2") int num2);
- @WebMethod(operationName = "getRetInfo")
- @WebResult(name = "result")
- public RetInfo getRetInfo(@WebParam(name = "name") String name, @WebParam(name = "age") int age);
- }
5.创建webservice实现类
- package com.sysware.demo.app.service.impl;
- import javax.jws.WebService;
- import com.sysware.demo.app.model.RetInfo;
- import com.sysware.demo.app.service.inf.IGetInfoService;
- @WebService(endpointInterface = "com.sysware.demo.app.service.inf.IGetInfoService")
- public class GetInfoServiceImpl implements IGetInfoService
- {
- @Override
- public int add(int num1, int num2)
- {
- return num1 + num2;
- }
- @Override
- public RetInfo getRetInfo(String name, int age)
- {
- RetInfo retInfo = new RetInfo();
- retInfo.setAge(age);
- retInfo.setName(name);
- return retInfo;
- }
- }
6.返回对象
- package com.sysware.demo.app.model;
- public class RetInfo
- {
- private String name;
- private int age;
- public String getName()
- {
- return name;
- }
- public void setName(String name)
- {
- this.name = name;
- }
- public int getAge()
- {
- return age;
- }
- public void setAge(int age)
- {
- this.age = age;
- }
- }
7.创建bean文件applicationContext.xml在WEB-INF目录下
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context
- http://www.springframework.org/schema/context/spring-context-3.0.xsd
- http://cxf.apache.org/jaxws
- http://cxf.apache.org/schemas/jaxws.xsd">
- <import resource="classpath:META-INF/cxf/cxf.xml" />
- <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
- <import resource="classpath:META-INF/cxf/cxf-extension-xml.xml"/>
- <bean id="getInfoServiceImpl" class="com.sysware.demo.app.service.impl.GetInfoServiceImpl"></bean>
- <jaxws:endpoint id="getInfoService" implementor="#getInfoServiceImpl" address="/getInfoService"></jaxws:endpoint>
- </beans>
8.修改pom文件
- <span style="white-space:pre"> </span><modelVersion>4.0.0</modelVersion>
- <span style="white-space:pre"> </span><groupId>com.sysware.demo</groupId>
- <span style="white-space:pre"> </span><artifactId>mvncxfdemo</artifactId>
- <span style="white-space:pre"> </span><packaging>war</packaging>
- <span style="white-space:pre"> </span><version>1.0-SNAPSHOT</version>
- <span style="white-space:pre"> </span><name>mvncxfdemo Maven Webapp</name>
- <span style="white-space:pre"> </span><url>http://maven.apache.org</url>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.10</version>
- <type>jar</type>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-frontend-jaxws</artifactId>
- <version>2.6.1</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>3.1.2.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-web</artifactId>
- <version>3.1.2.RELEASE</version>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-transports-common</artifactId>
- <version>2.5.4</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-core</artifactId>
- <version>2.6.1</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.cxf</groupId>
- <artifactId>cxf-rt-transports-http-jetty</artifactId>
- <version>2.6.1</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <build>
- <finalName>mvncxfdemo</finalName>
- <plugins>
- <plugin>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>8.1.5.v20120716</version>
- <configuration>
- <stopPort>9966</stopPort>
- <stopKey>foo</stopKey>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
9.运行
- mvn clean jetty:run-war
10.或者实现接口修改为
- package com.sysware.demo.app.service.impl;
- import javax.jws.WebMethod;
- import javax.jws.WebParam;
- import javax.jws.WebResult;
- import javax.jws.WebService;
- import com.sysware.demo.app.model.RetInfo;
- @WebService
- public class GetInfoServiceImpl
- {
- @WebMethod(operationName = "add")
- @WebResult(name = "result")
- public int add(@WebParam(name = "num1") int num1,
- @WebParam(name = "num2") int num2)
- {
- return num1 + num2;
- }
- @WebMethod(operationName = "getRetInfo")
- @WebResult(name = "result")
- public RetInfo getRetInfo(@WebParam(name = "name") String name, @WebParam(name = "age") int age)
- {
- RetInfo retInfo = new RetInfo();
- retInfo.setAge(age);
- retInfo.setName(name);
- return retInfo;
- }
- }
由于客户端用gsoap,如果两个service在同一个目录下,将导致错误,因为两个targetNamespace相同
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://userlist.user.webservice.service.cms.ivideo.sysware.com/" elementFormDefault="unqualified" targetNamespace="http://userlist.user.webservice.service.cms.ivideo.sysware.com/" version="1.0">
为了保证两个service不在一个target里面,建议每个package下只有一个webservice
相关推荐
SSM框架,全称为Spring、Spring MVC和MyBatis的集成框架,是Java Web开发中的常见选择。这个框架组合能够有效地实现模型-视图-控制器(MVC)架构,简化项目构建并提供强大的数据访问能力。下面将详细介绍SSM框架的...
1. **添加依赖**:首先,需要在项目的构建文件(如Maven的pom.xml或Gradle的build.gradle)中引入CXF和Spring的相关依赖库。 2. **配置Spring**:创建Spring配置文件,定义CXF的服务端点(Endpoint)和相关bean。...
以下是关于"Xfire配置Web Service+Spring+Hibernate详细配置流程"的知识点详解: 1. **Spring框架**: Spring是Java企业级应用开发的首选框架,提供依赖注入(DI)和面向切面编程(AOP)。在Web服务场景中,Spring...
Web服务(Web Service)是一种基于互联网的、使用标准XML(Extensible Markup Language)进行通信的软件组件,允许不同系统间的应用程序进行交互。Spring框架是Java平台上的一个核心框架,它提供了一个全面的基础...
标题 "spring2.5+ibatis3+web service cxf 例子MyEclipse工程" 提供了一个关于如何在MyEclipse环境中集成并使用Spring 2.5、iBatis 3和CXF Web服务的实例。这个项目组合是Java企业级开发中常见的技术栈,下面将详细...
标题 "spring+cxf编写简单的webservice接口" 涉及的是使用Spring框架和Apache CXF库来创建Web服务接口的技术。这是一个常见的做法,因为Spring提供了强大的依赖注入和管理功能,而CXF则是一个用于构建和消费Web服务...
3. **配置Spring**:编写Spring的配置文件,如`applicationContext.xml`,声明 CXF 的服务端点(SEI,Service Endpoint Interface)和实现,以及Struts2的Action类。 4. **配置CXF**:在`cxf-servlet.xml`或类似的...
3. **服务实现**:编写Web服务的接口(如果使用JAX-WS)和实现类。接口通常由WSDL文件生成,而实现类则包含实际的业务逻辑。 4. **部署和测试**:将Spring上下文加载到应用程序服务器,然后可以通过定义的地址访问...
【知识点详解】 ...这个过程涉及到Java注解、Maven依赖管理、Spring上下文加载、Web服务生命周期管理等多个关键知识点。对于初学者,掌握这些步骤和相关概念,有助于理解Web服务的开发与部署流程。
总之,CXF和Spring的组合为开发者提供了一种高效且灵活的方式来实现RESTFul服务,这种服务风格已经成为现代Web应用程序中的重要组成部分,广泛应用于API开发、微服务架构等领域。通过本教程,你已经掌握了基础的CXF ...
本文主要介绍了如何使用Spring Boot整合CXF开发Web Service的示例代码,解决了在现有系统中集成第三方提供的SOAP Web Service接口的问题。通过本示例,读者可以了解如何使用Spring Boot的风格优雅地整合CXF,开发出...
标题"Web Service CXF Spring集成"表明我们将探讨如何在Spring环境中利用Apache CXF来创建和整合Web服务。首先,你需要在项目中引入CXF和Spring的相关依赖。通常,这可以通过在Maven或Gradle的配置文件中添加相应的...
【标题】"webservice client (springmvc +mybatis+mysql +cxf )" 是一个基于SpringMVC、MyBatis、MySQL数据库以及Apache CXF框架构建的Web服务客户端项目。这个项目整合了多种技术,用于创建能够消费Web服务的客户端...
本篇文章将围绕“基于Spring 3.0的CXF发布Web Service及客户端”的主题展开,详细介绍如何利用这两个强大的工具来实现服务的发布和调用。 首先,我们需要理解Spring 3.0的关键特性。Spring 3.0引入了更多的模块和...
【标题】"cxf +spring" 指的是在Java Web开发中,使用Apache CXF框架与Spring框架的集成应用。Apache CXF是一个开源服务框架,它允许开发者创建和消费Web服务,支持多种协议和标准,如SOAP、RESTful、JAX-RS和JAX-WS...
"Apache CXF开发Web Service - 开发Web Service之Kick Start"的主题意味着我们将深入探讨如何快速入门使用CXF进行Web服务开发。 首先,我们来看一下CXF的主要功能。CXF支持多种Web服务规范,如SOAP、RESTful(基于...
3. **服务实现**:编写Web服务接口和实现类。接口通常遵循某种Web服务规范,如SOAP的WSDL(Web Service Description Language)。实现类则提供实际的业务逻辑。 4. **服务注册**:在Spring配置文件中,使用`jaxws:...
- **WSDL(Web Service Definition Language)**:在CXF中,你可以基于WSDL文件生成服务端代码,也可以先编写Java接口和服务实现,然后由CXF自动生成WSDL。WSDL定义了服务的接口、消息格式和绑定方式。 - **JAX-WS...