如何在eclipse中链接项目
我有一个 java 项目,我想在不替换其源代码的情况下开发它。我想将我的代码链接到我的工作区而不进行物理替换?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个 java 项目,我想在不替换其源代码的情况下开发它。我想将我的代码链接到我的工作区而不进行物理替换?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
Package Explorer
上选择要引用的Project
,Properties
(或按 Ctrl-Enter )。Java Build Path
中的Projects
下,您可以添加当前打开的另一个项目。如果您想覆盖某个类,您可以在当前项目中复制它,然后将其在
Order and Export
的类路径中进一步向上移动。Project
you want to reference from onPackage Explorer
Properties
( or hit Ctrl-Enter ).Projects
inJava Build Path
you can add another project which is currently open.If you want to override a class you can make a copy of it in your current project and move it further up in the classpath in
Order and Export
.链接源
项目属性 -> Java构建路径(树项)->来源(选项卡)->链接源(按钮)
链接项目
项目属性 -> Java构建路径(树项)->项目(选项卡)->添加...(按钮)
建议
请参阅 Eclipse 帮助主题:
Workbench 用户指南 >任务>处理项目、文件夹和文件 >创建链接资源
。Linking Source
Project properties -> Java build path (tree-item) -> Source (tab) -> Link source (button)
Linking Projects
Project properties -> Java build path (tree-item) -> Projects (tab) -> Add... (button)
Suggestion
See Eclipse help topic:
Workbench User Guide > Tasks > Working with projects, folders and files > Creating linked resources
.您可以链接到工作区之外的项目。这允许项目继续存在于外部,但可以参考浏览源代码、调试、断点等。在 Eclipse 中,从菜单中
常规>将现有项目放入工作区
将项目复制到工作区
复选框。单击“完成”。您在此工作区中的项目中所做的更改将反映到其本机位置的项目中。
请确保当您从非本机拥有的工作区中删除项目引用时,您不会
删除磁盘上的项目内容(无法撤消)
。You can link to a project that exists outside your workspace. This allows the project to continue to exist outside but be referable for purposes of browsing source, debugging, breakpoints, etc. In Eclipse, from the menu:
File | Import...
and chooseGeneral > Existing Projects into Workspace
Copy projects into workspace
. Click Finish.Changes you make in the project in this workspace will be reflected into the project in it's native location.
Be sure that when you remove the project reference from the non-natively owned workspace, that you don't
Delete project contents on disk (cannot be undone)
.对于基于 Maven 的项目,以下对我有用:
确保选中以下复选框
For Maven based projects, following worked for me:
Make sure to have following checkbox checked