其他分享
首页 > 其他分享> > Spring Boot项目的创建

Spring Boot项目的创建

作者:互联网

使用Spring Initializer创建Spring Boot项目

首先我们要下载Maven和更改settings.xml文件

Maven的下载官方网址:
https://mirror.bit.edu.cn/apache/maven/

User settings file选择刚刚下载的Maven路径下conf下的settings.xml文件,下面是我的路径:

E:Tool\Maven\apache-maven-3.5.4\conf

点开settings.xml文件,我们需要进行一些配置

首先我们选择自己JDK版本,如下图:

代码如下:

<profile>
  <id>jdk-12.0.2</id>

  <activation>
	<activeByDefault>true</activeByDefault>
    <jdk>12.0.2</jdk>
  </activation>

  <properties>
		<maven.compiler.source>12.0.2</maven.compiler.source>
		<maven.compiler.target>12.0.2</maven.compiler.target>
		<maven.compiler.compilerVersion>12.0.2</maven.compiler.compilerVersion>
  </properties>
  
</profile>

标签:xml,settings,Spring,Boot,Maven,12.0,创建
来源: https://www.cnblogs.com/coderD/p/13695612.html