使用maven项目 转XSD、 WSDL 成Java类

时间:2022-06-21 19:12:20

因为项目需要,在网上查找了很多WSDL的使用方式,但是感觉不是特别顺利。现在是利用Maven 项目快速转化的方法。

首先建立一个maven 项目 ,并将下面的pom文件复制进去。

 <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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <groupId>org.springframework.boot</groupId>
<artifactId>WebSeriveces</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging> <name>WebSeriveces</name>
<url>http://maven.apache.org</url> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties> <dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb20-plugin</artifactId>
<version>0.13.1</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<schemaLanguage>WSDL</schemaLanguage>
<generatePackage>com.test.sample</generatePackage>
//转化之后的包
<schemas>
<schema>
<url>testsample.wsdl</url>
//需要转化的文件
</schema>
</schemas>
</configuration>
</plugin>
</plugins>
</build>
</project>

然后把要wsdl、xsd文件放到项目目录下。run maven build 即可。