redhat-developer / redhat-developer/vscode-java
JDT LS fails to resolve lombok.config in single-folder Maven projects
Chưa có ai nhận issue này.
- Ngôn ngữ chính
- TypeScript
- Star
- 2.3k
- Fork
- 546
- Merge trung bình
- 20 giờ 1 phút
- Pull request đã merge (30 ngày)
- 11
Mô tả
Bug Report Issue: lombok.config not loaded in single-folder Maven project
Describe the bug
When opening a Maven multi-module project via VSCode's "Open Folder" (single-folder mode), the lombok.config file at the project root is completely ignored. Lombok annotations work (e.g., @Data, @Getter), but all settings in lombok.config (such as lombok.accessors.chain=true, lombok.tostring.callsuper=CALL) are not applied. The editor shows errors where it shouldn't, e.g., setter methods not returning this for chaining, or toString() not calling super.toString().
The project compiles fine from command line (mvn clean compile passes without errors), which confirms the lombok.config file itself is correct and Maven picks it up properly. The issue is exclusively within the JDT Language Server's handling of lombok.config in VSCode's single-folder mode.
Notably, opening the same project via .code-workspace file (workspace mode) works correctly — lombok.config is loaded and all settings take effect.
To Reproduce
- Create or open a Maven multi-module project with a
lombok.configfile at the project root directory - Open the project via VSCode's "Open Folder" (single-folder mode, NOT workspace mode)
- Configure
lombok.configwith non-default settings, e.g.:lombok.accessors.chain=true lombok.tostring.callsuper=CALL lombok.equalsandhashcode.callsuper=CALL - Create a class with
@Dataannotation and verify:- Setters should return
this(chain = true) but they returnvoid(default behavior) toString()should callsuper.toString()but it doesn't
- Setters should return
- Run
mvn clean compilefrom terminal — this works correctly, confirming the config file is valid
Expected behavior
lombok.config at the project root should be discovered and applied by JDT LS, even in single-folder mode. All configured settings (chain, callsuper, etc.) should take effect in the editor's language features.
Environment
| Item | Value |
|---|---|
| Operating System | Windows 11 Home Chinese Edition (Version 2009) |
| JDK | Oracle GraalVM 21.0.10+8.1 (build 21.0.10+8-LTS-jvmci-23.1-b84) |
| Visual Studio Code | 1.128.0 (x64) |
| Java Extension (redhat.java) | 1.55.0 |
| Java Extension Pack | 0.31.1 |
| Lombok version | 1.18.46 |
| Project type | Maven multi-module (ruoyi-vue-pro) |
Additional Information
What works
- Opening the project via
.code-workspacefile (workspace mode):lombok.configloads correctly mvn clean compilefrom command line: compiles correctly with all lombok.config settings applied
What does NOT work (all attempted and failed)
- Lombok version upgrade: Using 1.18.46, well above the 1.18.28 fix for Eclipse 4.27 compatibility (issue #2887)
- Manual
-javaagentinjection: Settingjava.jdt.ls.vmargsto-javaagent:<path>/lombok-1.18.46.jarin.vscode/settings.json— no effect - Disabling built-in Lombok support: Setting
java.jdt.ls.lombokSupport.enabled: false+ manual javaagent — no effect - Copying
lombok.configtosrc/main/java/: No effect - Removing
config.stopBubbling: No effect Java: Clean Java Language Server Workspaceafter each change: No effect
Suspected root cause
Based on Lombok source code analysis (FileSystemSourceCache.forUri() and EclipseAST.getAbsoluteFileLocation()), the issue likely lies in how JDT LS resolves the source file URI in single-folder mode. In workspace mode, the .code-workspace file provides a clear project root context, allowing JDT LS to pass correct absolute file paths to Lombok. In single-folder mode, the Invisible Project mechanism may resolve URIs differently, causing Lombok's lombok.config discovery (which walks up from the source file's parent directory) to never reach the actual project root directory where lombok.config resides.
Related issues
- #2887 —
lombok.config ignored in 1.14.0(fixed in Lombok 1.18.28 for Eclipse 4.27 compatibility) - projectlombok/lombok#3332 — The upstream Lombok fix for Eclipse 4.27
lombok.config content
lombok.tostring.callsuper=CALL
lombok.equalsandhashcode.callsuper=CALL
lombok.accessors.chain=true
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Hướng nghiên cứu
Bắt đầu bằng cách theo dõi Lombok's FileSystemSourceCache.forUri() và EclipseAST.getAbsoluteFileLocation() qua cách JDT LS xử lý single-folder và Invisible Project. So sánh các URI của tệp nguồn và việc phân giải thư mục gốc của project với workspace mode; issue được hoàn thành khi root lombok.config được phát hiện trong single-folder mode và các thiết lập của nó ảnh hưởng đến các tính năng ngôn ngữ của trình soạn thảo.
Do mô hình lập chỉ mục viết ra từ nội dung của issue.
Đánh giá
- Công nghệ
- java, vscode
- Lĩnh vực
- devtools, tooling
- Loại issue
- Lỗi
- Độ khó
- 4/5
- Thời gian dự kiến
- 3-5 ngày
- Mức độ hoạt động
- Ít trao đổi
- Độ rõ ràng
- Khá rõ ràng
- Mức phù hợp với người mới
- 48/100