如何在eclipse中链接项目

发布于 2024-11-18 18:06:41 字数 62 浏览 3 评论 0 原文

我有一个 java 项目,我想在不替换其源代码的情况下开发它。我想将我的代码链接到我的工作区而不进行物理替换?

I have a java project and I want to develop it without replacing the source code from its place. I want to link my code to my workspace without replace physically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

亚希 2024-11-25 18:06:41
  1. Package Explorer 上选择要引用的Project
  2. 右键单击并转到Properties(或按 Ctrl-Enter )。
  3. Java Build Path 中的 Projects 下,您可以添加当前打开的另一个项目。

如果您想覆盖某个类,您可以在当前项目中复制它,然后将其在 Order and Export 的类路径中进一步向上移动。

  1. Select the Project you want to reference from on Package Explorer
  2. Right-click and go to Properties ( or hit Ctrl-Enter ).
  3. Under Projects in Java 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.

离旧人 2024-11-25 18:06:41

链接源

项目属性 -> 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.

动次打次papapa 2024-11-25 18:06:41

您可以链接到工作区之外的项目。这允许项目继续存在于外部,但可以参考浏览源代码、调试、断点等。在 Eclipse 中,从菜单中

  1. 选择 :导入...并选择常规>将现有项目放入工作区
  2. 在对话框的下一个面板上,浏览到项目的位置并确保在列表框中选择它。
  3. 请务必不要选中将项目复制到工作区复选框。单击“完成”。

您在此工作区中的项目中所做的更改将反映到其本机位置的项目中。

请确保当您从非本机拥有的工作区中删除项目引用时,您不会删除磁盘上的项目内容(无法撤消)

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:

  1. Select File | Import... and choose General > Existing Projects into Workspace
  2. On the next panel in the dialog, browse to the location of the project and ensure it's selected in the listbox.
  3. Be sure to not check the checkbox 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).

二货你真萌 2024-11-25 18:06:41

对于基于 Maven 的项目,以下对我有用:

确保选中以下复选框

项目属性-> Java构建路径(树项)->库(选项卡)-> Maven 依赖关系(树项)->编辑(按钮)-> Maven项目设置(链接)->解决工作区项目的依赖关系(复选框)

For Maven based projects, following worked for me:

Make sure to have following checkbox checked

Project properties -> Java build path (tree-item) -> Libraries (tab) -> Maven Dependencies (tree-item) -> Edit (button) -> Maven Project Settings (link) -> Resolve dependencies from Workspace projects (checkbox)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文