JAX-RS (REST Web Services) 2.0 can not be installed错误

我的理解是没指定开发环境解决:

在pom中配置:

 
 <build>
<plugins>
<plugin>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>

刷新项目。。。。

猜你喜欢

转载自blog.csdn.net/xiao_cacg/article/details/79207312
今日推荐