在使用 IDEA 的過程中,可能會出現諸如:
Error:java: javacTask: source release 1.6 requires target release 1.6
Error:java: javacTask: source release 1.X requires target release 1.X
等錯誤,表示您目標輸出的版本不符合,若您使用的是 Maven 來管理方案,可以使用指定 compiler 的方式來解決
如在 pom.xml 中加上:
<build>
<finalName>TestSpringMVC_013</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
其他參考解決方式:
IntelliJ IDEA Tip: source release 1.6 requires target release 1.6
IDEA: javac: source release 1.7 requires target release 1.7
沒有留言 :
張貼留言