解决maven默认的使用JDK1.5的情况

  • Post author:
  • Post category:其他



在IDEA中的Setting→Editor→Live Templates →选择右侧的+创建自己的模板组

选择template Group 创建一个自己的template组  例如;MyTemplates(如上图所示)

然后再选择+选择Live Template 创建模板

第一个模板是:jdk8

第二个模板是tomcat的配置

如果还是出现问题请更改

修改pom.xml文件放入:      (前提是maven的配置文件中setting.xml文件中的下载路径给到阿里云等国内地址,把格式调整一下)


<



build



>



<



plugins



>



<



plugin



>



<



groupId



>


org.apache.tomcat.maven</



groupId



>



<



artifactId



>


tomcat7-maven-plugin</



artifactId



>



<



version



>


2.2</



version



>



<



configuration



>



<



port



>


8080</



port



>



<



uriEncoding



>


UTF-8</



uriEncoding



>



</



configuration



>



</



plugin



>



<



plugin



>



<



groupId



>


org.apache.maven.plugins</



groupId



>



<



artifactId



>


maven-compiler-plugin</



artifactId



>



<



version



>


3.2</



version



>



<



configuration



>



<



target



>


1.8</



target



>



<



source



>


1.8</



source



>



<



encoding



>


UTF-8</



encoding



>



</



configuration



>



</



plugin



>


</



plugins



>



</



build



>



版权声明:本文为qq_34257088原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。