解决告警:Build path specifies execution environment J2SE-1.5. There are no JREs ........

     Build path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that are strictly compatible with this environment. 警告原因及解决。

      警告原因:在创建java web工程时,遇到以上告警,该告警意思是Eclipse使用的默认环境时JRE1.8,需要修改成自己需要使用的java版本,博主在项目中使用java8,且使用maven构建,所以在pom文件中增加相应的编译配置即可。

      解决方案:在pom文件中增加以下代码,保存之后在项目上点击右键->选择maven -> 选择update Project ->点击ok跟新即可。


    
    	
    		
    		org.apache.maven.plugins
   			maven-compiler-plugin
    		3.7.0
    		
    			1.8   //java版本说明
    			1.8
    			UTF8
    		
    	
    
  
        按照以上方法没有解决的同学,可以在博客下留言,一起探讨学习, 谢谢。

你可能感兴趣的:(解决告警:Build path specifies execution environment J2SE-1.5. There are no JREs ........)