When Import Maven project:
"Java Build Path" > "Libraries" 中的 component 显示的是引用 jar, 而不是引用本 workspace. 此时就要勾选 "Resolve Workspace projects".
Resolve Workspace projects:
Dependencies opened as workspace projects will be resolved without having to install them to your local Maven repository first. This way, any changes made to one of these dependencies will have an immediate effect on other projects consuming it (compilation, refactoring, etc.).
When Resolve Workspace projects is disabled, dependencies existing in the workspace must be installed to your local Maven repository after any change (by running mvn install), in order to see effects in projects consuming them.
Window->Show view->Other...->Mave Repositories
Right-click "Workspace projects", and select "Rebuild index", and then "clean all projects", and Maven "update project" again. then problem solved. actually not sure whether solved by this.

本文详细介绍了在使用Maven管理Java项目时遇到的Libraries组件显示引用jar而非工作空间的情况,以及如何通过启用ResolveWorkspaceprojects选项来解决依赖解析问题。此外,还提供了清理工作空间、重建索引和更新项目的步骤,以确保项目依赖的一致性和即时生效。
781

被折叠的 条评论
为什么被折叠?



