02.环境准备-idea配置maven

版本要求

  • jdk 1.7及以上 (jdk 1.8)
  • maven 3.3及以上 (maven 3.3.9)
  • idea 2017/eclipse…(idea 2019)
  • spring boot 1.5.9(本案例使用)

maven的设置

给maven的conf下的setting.xml配置文件的profiles标签添加

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

idea的设置–配置maven

02.环境准备-idea配置maven_第1张图片
02.环境准备-idea配置maven_第2张图片

你可能感兴趣的:(Spring,Boot与微服务)