seoft

kotlin spring 실행시 Task :compileKotlin FAILED e: java.lang.OutOfMemoryError: Java heap space 에러 본문

server

kotlin spring 실행시 Task :compileKotlin FAILED e: java.lang.OutOfMemoryError: Java heap space 에러

seoft 2022. 5. 5. 13:13

원래 잘 되던 kotlin spring boot 서버를 실행했더니 다음 에러를 출력하며 빌드 fail 발생

 

> Task :compileKotlin FAILED

e: java.lang.OutOfMemoryError: Java heap space

 

램 옵션 관련된 다양한 솔루션이 있었으나, 다음 명령어로 해결볼 수 있었다

 

gradle clean test ( in project dir )

 

또한 찾은곳에서 위 명령어가 안 될 경우 (작성자기준 코틀린 1.5.21 기준) 그 다음 스탭으로 다음 솔루션을 제시하였으나 나는 위 옵션으로 해결되어 해보진않았다

 

gradle.properties 파일에 다음 명령어 추가

org.gradle.jvmargs=-Duser.country=US -Dkotlin.daemon.jvm.options=-Xmx2400m -Dfile.encoding=UTF-8
 
 
 
Comments