1.运行环境

开发工具:intellij idea

JDK版本:1.8

项目管理工具:Maven 4.0.0

2.Maven Plugin管理

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <project xmlns="http://maven.apache.org/POM/4.0.0"
 3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 5     <modelVersion>4.0.0</modelVersion>
 6 
 7     <groupId>spring-boot-ws</groupId>
 8     <artifactId>spring-boot-ws</artifactId>
 9     <version>1.0-SNAPSHOT</version>
10 
11     <parent>
12         <groupId>org.springframework.boot</groupId>
13         <artifactId>spring-boot-starter-parent</artifactId>
14         <version>1.5.6.RELEASE</version>
15     </parent>
16 
17     <dependencies>
18         <dependency>
19             <groupId>org.springframework.boot</groupId>
20             <artifactId>spring-boot-starter-web</artifactId>
21         </dependency>
22         <!-- CXF webservice -->
23         <dependency>
24             <groupId>org.apache.cxf</groupId>
25             <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
26             <version>3.1.11</version>
27         </dependency>
28     </dependencies>
29 
30 
31 </project>
View Code

相关文章:

  • 2021-08-03
  • 2021-07-18
  • 2021-10-22
  • 2021-10-30
  • 2021-08-03
  • 2022-12-23
  • 2022-12-23
  • 2021-08-20
猜你喜欢
  • 2021-08-31
  • 2021-08-13
  • 2021-07-30
  • 2022-02-23
  • 2021-08-12
  • 2022-03-06
  • 2022-12-23
相关资源
相似解决方案