當(dāng)前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
Eclipse新建SpringBoot后pom.xml代码
生活随笔
收集整理的這篇文章主要介紹了
Eclipse新建SpringBoot后pom.xml代码
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
Eclipse中新建SpringBoot項(xiàng)目后pom.xml代碼
<?xml version="1.0" encoding="UTF-8"?> <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><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.1.3.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><groupId>com.badao</groupId><artifactId>helloSpringBoot</artifactId><version>0.0.1-SNAPSHOT</version><name>helloSpringBoot</name><description>Demo project for Spring Boot</description><properties><java.version>1.8</java.version></properties><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies><build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId></plugin></plugins></build></project>?
總結(jié)
以上是生活随笔為你收集整理的Eclipse新建SpringBoot后pom.xml代码的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: SSM+Druid实现动态多数据源切换(
- 下一篇: Eclipse新建SpringBoot项