加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

cxf基于soap的webservice

发布时间:2020-12-16 23:21:36 所属栏目:安全 来源:网络整理
导读:客户端的简单访问: JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean(); factory.getInInterceptors().add(new LoggingInInterceptor()); factory.getOutInterceptors().add(new LoggingOutInterceptor()); factory.setServiceClass(PersonServic

客户端的简单访问:

JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.getInInterceptors().add(new LoggingInInterceptor());
factory.getOutInterceptors().add(new LoggingOutInterceptor());
factory.setServiceClass(PersonService.class);
factory.setAddress("http://localhost:8080/united-coders.com-CXFExample/personService");
PersonService client = (PersonService) factory.create();

String reply = client.greetPerson("I love you,my husband!");
System.out.println("Server said: " + reply);
System.exit(0);


服务端的搭建:

pom.xml:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
? ? xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
? ? <modelVersion>4.0.0</modelVersion>
? ? <groupId>com.unitedcoders.demo</groupId>
? ? <artifactId>CXFExampleService</artifactId>
? ? <packaging>war</packaging>
? ? <version>0.0.1-SNAPSHOT</version>
? ? <name>Example Apache CXF Webservice</name>
? ? <url>http://united-coders.com</url>
? ??
? ? <!-- Dependency properties -->
? ? <properties>
? ? ? ? <junit-version>4.5</junit-version>
? ? ? ? <cxf.version>2.2.6</cxf.version>
? ? ? ? <spring-version>3.0.1.RELEASE</spring-version>
? ? ? ? <commons-logging-version>1.1.1</commons-logging-version>
? ? </properties>
? ??
? ? <!-- Plugin configuration -->
? ? <build>
? ? ? ? <finalName>CXFExampleService</finalName>
? ? ? ? <!-- Feel free to change maven-compiler-plugin configuration -->
? ? ? ? <plugins>
? ? ? ? ? ? <plugin>
? ? ? ? ? ? ? ? <groupId>org.apache.maven.plugins</groupId>
? ? ? ? ? ? ? ? <artifactId>maven-compiler-plugin</artifactId>
? ? ? ? ? ? ? ? <configuration>
? ? ? ? ? ? ? ? ? ? <source>1.6</source>
? ? ? ? ? ? ? ? ? ? <target>1.6</target>
? ? ? ? ? ? ? ? </configuration>
? ? ? ? ? ? </plugin>
? ? ? ? ? ? <plugin>
? ? ? ? ? ? ? ? <groupId>org.apache.cxf</groupId>
? ? ? ? ? ? ? ? <artifactId>cxf-java2ws-plugin</artifactId>
? ? ? ? ? ? ? ? <version>${cxf.version}</version>
? ? ? ? ? ? ? ? <dependencies>
? ? ? ? ? ? ? ? ? ? <dependency>
? ? ? ? ? ? ? ? ? ? ? ? <groupId>org.apache.cxf</groupId>
? ? ? ? ? ? ? ? ? ? ? ? <artifactId>cxf-rt-frontend-jaxws</artifactId>
? ? ? ? ? ? ? ? ? ? ? ? <version>${cxf.version}</version>
? ? ? ? ? ? ? ? ? ? </dependency>
? ? ? ? ? ? ? ? ? ? <dependency>
? ? ? ? ? ? ? ? ? ? ? ? <groupId>org.apache.cxf</groupId>
? ? ? ? ? ? ? ? ? ? ? ? <artifactId>cxf-rt-frontend-simple</artifactId>
? ? ? ? ? ? ? ? ? ? ? ? <version>${cxf.version}</version>
? ? ? ? ? ? ? ? ? ? </dependency>
? ? ? ? ? ? ? ? </dependencies>
? ? ? ? ? ? ? ? <executions>
? ? ? ? ? ? ? ? ? ? <execution>
? ? ? ? ? ? ? ? ? ? ? ? <id>process-classes</id>
? ? ? ? ? ? ? ? ? ? ? ? <phase>process-classes</phase>
? ? ? ? ? ? ? ? ? ? ? ? <configuration>
? ? ? ? ? ? ? ? ? ? ? ? ? ? <className>com.unitedcoders.demo.PersonService</className>
? ? ? ? ? ? ? ? ? ? ? ? ? ? <genWsdl>true</genWsdl>
? ? ? ? ? ? ? ? ? ? ? ? ? ? <verbose>true</verbose>
? ? ? ? ? ? ? ? ? ? ? ? </configuration>
? ? ? ? ? ? ? ? ? ? ? ? <goals>
? ? ? ? ? ? ? ? ? ? ? ? ? ? <goal>java2ws</goal>
? ? ? ? ? ? ? ? ? ? ? ? </goals>
? ? ? ? ? ? ? ? ? ? </execution>
? ? ? ? ? ? ? ? </executions>
? ? ? ? ? ? </plugin>
? ? ? ? </plugins>
? ? ? ? <pluginManagement>
? ? ? ? <plugins>
? ? ? ? <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
? ? ? ? <plugin>
? ? ? ? <groupId>org.eclipse.m2e</groupId>
? ? ? ? <artifactId>lifecycle-mapping</artifactId>
? ? ? ? <version>1.0.0</version>
? ? ? ? <configuration>
? ? ? ? <lifecycleMappingMetadata>
? ? ? ? <pluginExecutions>
? ? ? ? <pluginExecution>
? ? ? ? <pluginExecutionFilter>
? ? ? ? <groupId>
? ? ? ? org.apache.cxf
? ? ? ? </groupId>
? ? ? ? <artifactId>
? ? ? ? cxf-java2ws-plugin
? ? ? ? </artifactId>
? ? ? ? <versionRange>
? ? ? ? [2.2.6,)
? ? ? ? </versionRange>
? ? ? ? <goals>
? ? ? ? <goal>java2ws</goal>
? ? ? ? </goals>
? ? ? ? </pluginExecutionFilter>
? ? ? ? <action>
? ? ? ? <ignore></ignore>
? ? ? ? </action>
? ? ? ? </pluginExecution>
? ? ? ? </pluginExecutions>
? ? ? ? </lifecycleMappingMetadata>
? ? ? ? </configuration>
? ? ? ? </plugin>
? ? ? ? </plugins>
? ? ? ? </pluginManagement>
? ? </build>
? ??
? ? <!-- Dependency definitions -->
? ? <dependencies>
? ??
? ? ? ? <!-- Apache CXF dependencies -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.apache.cxf</groupId>
? ? ? ? ? ? <artifactId>cxf-rt-frontend-jaxws</artifactId>
? ? ? ? ? ? <version>${cxf.version}</version>
? ? ? ? </dependency>
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.apache.cxf</groupId>
? ? ? ? ? ? <artifactId>cxf-rt-transports-http</artifactId>
? ? ? ? ? ? <version>${cxf.version}</version>
? ? ? ? </dependency>
? ? ? ??
? ? ? ? <!-- Spring Dependencies -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.springframework</groupId>
? ? ? ? ? ? <artifactId>spring-core</artifactId>
? ? ? ? ? ? <version>${spring-version}</version>
? ? ? ? </dependency>
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.springframework</groupId>
? ? ? ? ? ? <artifactId>spring-web</artifactId>
? ? ? ? ? ? <version>${spring-version}</version>
? ? ? ? </dependency>
? ? ? ??
? ? ? ? <!-- Logging -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>commons-logging</groupId>
? ? ? ? ? ? <artifactId>commons-logging</artifactId>
? ? ? ? ? ? <version>${commons-logging-version}</version>
? ? ? ? </dependency>
? ? ? ??
? ? ? ? <!-- Testing -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>junit</groupId>
? ? ? ? ? ? <artifactId>junit</artifactId>
? ? ? ? ? ? <version>${junit-version}</version>
? ? ? ? ? ? <scope>test</scope>
? ? ? ? </dependency>
? ? </dependencies>
</project>


applicationContext.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:jaxws="http://cxf.apache.org/jaxws"
? ? xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.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-extension-soap.xml" />
? ? <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
? ??
? ? <!-- Spring manage ServiceBean -->
? ? <bean id="personServ" class="com.unitedcoders.demo.PersonServiceImpl" />


? ? <!-- JAX-WS Service Endpoint --> ? ?
? ? <jaxws:endpoint id="personService" implementor="#personServ" address="/personService" />
? ??
</beans>


web.xml:


<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
? ? xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee?
? ? ? ? ?http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">


? ? <display-name>CXF Example Webservice</display-name>


? ? <listener>
? ? ? ? <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
? ? </listener>


? ? <context-param>
? ? ? ? <param-name>contextConfigLocation</param-name>
? ? ? ? <param-value>classpath:application-context.xml</param-value>
? ? </context-param>


? ? <servlet>
? ? ? ? <servlet-name>CXFServlet</servlet-name>
? ? ? ? <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>
? ? ? ? <load-on-startup>1</load-on-startup>
? ? </servlet>


? ? <servlet-mapping>
? ? ? ? <servlet-name>CXFServlet</servlet-name>
? ? ? ? <url-pattern>/*</url-pattern>
? ? </servlet-mapping>
? ??
</web-app>



类有以下几个:

1)

package com.unitedcoders.demo;


public class Person {


? ? private String name;
? ??
? ? public Person(String name) {
? ? ? ? this.name = name;
? ? }


? ? public String getName() {
? ? ? ? return name;
? ? }


? ? public void setName(String name) {
? ? ? ? this.name = name;
? ? }
? ??
}


2)

package com.unitedcoders.demo;


import javax.jws.WebParam;
import javax.jws.WebService;


@WebService
public interface PersonService {


? ? public String greetPerson(@WebParam(name="text") String text);


}


3)

package com.unitedcoders.demo; import javax.jws.WebService; @WebService(endpointInterface = "com.unitedcoders.demo.PersonService") public class PersonServiceImpl implements PersonService { ? ? public String greetPerson(String text) { ? ? ? ? Person person = new Person(text); ? ? ? ? return "Hello " + person.getName() + "!"; ? ? } }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读