博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maven+eclipse complier Dynamic Web Module 3.0 requires Java 1.6 or newer.
阅读量:5740 次
发布时间:2019-06-18

本文共 552 字,大约阅读时间需要 1 分钟。

  hot3.png

Dynamic Web Module 3.0 requires Java 1.6 or newer.

Java compiler level does not match the version of the installed Java project facet.

JAX-RS (REST Web Services) 2.0 requires Java 1.6 or newer.

One or more constraints have not been satisfied.

131510_SzMv_2769907.png

添加这行代码

   <plugins>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.2</version>
    <configuration>
        <source>1.8</source>
        <target>1.8</target>
    </configuration>
</plugin>
</plugins>

然后maven ——> update project

 

转载于:https://my.oschina.net/ldm95/blog/887438

你可能感兴趣的文章
spring.net 继承
查看>>
ES6:模块简单解释
查看>>
JavaScript indexOf() 方法
查看>>
用Bootstrap写一份简历
查看>>
ZJU PAT 1023
查看>>
WMI远程访问问题解决方法
查看>>
从零开始学习IOS,(UILabel控件)详细使用和特殊效果
查看>>
Android开发历程_15(AppWidget的使用)
查看>>
阿花宝宝 Java 笔记 之 初识java
查看>>
7、设计模式-创建型模式-建造者模式
查看>>
Cesium官方教程11--建模人员必读
查看>>
我国古代的勾股定理
查看>>
Linux下的C编程实战
查看>>
[32期] html中部分代码与英语单词关系
查看>>
PHP安装环境,服务器不支持curl_exec的解决办法
查看>>
9.1(java学习笔记)正则表达式
查看>>
fopen打开文件失败的问题
查看>>
jQuery|元素遍历
查看>>
sql语句大全
查看>>
RedHat 6 安装配置Apache 2.2
查看>>