Spring
[ Intellij ] lombok이 적용되지 않을 때
Arthur Kim
2021. 10. 26. 13:46
Error Message
java: You aren't using a compiler supported by lombok, so lombok will not work and has been disabled. Your processor is: com.sun.proxy.$Proxy24
Lombok supports: sun/apple javac 1.6, ECJ
Solution
- VM옵션으로 -Djps.track.ap.dependencies=false 값을 추가해준다.
File > Setting
Build, Execution, Deployment -> Compiler -> Shared build process VM options
https://i.stack.imgur.com/gIuX8.png
Discuss
https://github.com/projectlombok/lombok/issues/2592
[BUG] Lombok Does not work with IntelliJ EAP 2020.3 Build 203.4203.26 · Issue #2592 · projectlombok/lombok
Describe the bug Compiling projects with Lombok in IntelliJ 2020.3 EAP (Build 203.4203.26) leads to: java: You aren't using a compiler supported by lombok, so lombok will not work and has been ...
github.com
Can't compile project when I'm using Lombok under IntelliJ IDEA
I'm trying to use Lombok in my project that I'm developing using IntelliJ IDEA 11. I've installed 3rd-party plugin for IDEA and it seems working fine because IDEA sees all autogenerated methods/fie...
stackoverflow.com