SpringBoot——环境搭建

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/rubulai/article/details/81072890

1、JDK1.8

2、MAVEN3.3

maven的settings.xml文件需配置profile:告诉maven用jdk1.8来编译项目

<profiles>
	<profile>
		<id>jdk-1.8</id>
		<activation>
			<activeByDefault>true</activeByDefault>
			<jdk>1.8</jdk>
		</activation>
		<properties>
			<maven.compiler.source>1.8</maven.compiler.source>
			<maven.compiler.target>1.8</maven.compiler.target>
			<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
		</properties>
	</profile>
</profiles>

3、SpringBoot1.5.9

4、IDEA

IDEA配置maven:

猜你喜欢

转载自blog.csdn.net/rubulai/article/details/81072890