首页 > 编程语言 > 详细

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

时间:2017-02-15 14:52:56      阅读:1938      评论:0      收藏:0      [点我收藏+]

pom.xml文件中添加:

<build>

<plugins>

<plugin>

<groupId>org.apache.maven.plugins</groupId>

<artifactId>maven-compiler-plugin</artifactId>

<configuration>

<source>1.8</source>

<target>1.8</target>

</configuration>

</plugin>

</plugins>

</build>

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

原文:http://www.cnblogs.com/hanxf/p/6401141.html

(0)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!