Backend Language/Spring boot(Java)
Intellij Error - invalid source release: 17
chaerlo127
2022. 7. 4. 13:52
728x90
spring security๋ฅผ ๊ณต๋ถํ๊ณ ์, spring boot file์ ์์ฑํ์๋๋ฐ build ์ ๋ค์๊ณผ ๊ฐ์ ์ค๋ฅ๊ฐ ๋ฐ์ํ์๋ค.
ํ๋ก์ ํธ ๋ฒ์ ์ด 17์ด์ด์ ๋ฌธ์ ๊ฐ ๋ฐ์ํ์๊ณ , 11๋ก downgrade๋ฅผ ํด์ฃผ์ด์ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ์๋ค.
# build.gradle file ์์
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '17'
-----------------------------------------------
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11' #๋ณ๊ฒฝ
728x90