본문 바로가기
Study/SPRING

Spring 에러 - resource specification not allowed here for source level below 1.7 ~

by 멘탈은안녕하신가 2020. 2. 8.
728x90
반응형
  • 에러 내용 : 1.7 이상의 컴파일 환경을 사용하고 있음에도 1.7 이하의 버전을 환경설정에 사용중이기 때문에 발생하는 문제
  • 해결 방법 : 아래처럼 pom.xml 파일을 수정 Update Maven 실행.
<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<version>2.5.1</version>
	<configuration>
		<source>1.6</source> -> 1.8로 수정
		<target>1.6</target> -> 1.8로 수정
		<compilerArgument>-Xlint:all</compilerArgument>
		<showWarnings>true</showWarnings>
		<showDeprecation>true</showDeprecation>
	</configuration>
</plugin>
728x90
반응형

댓글