Eclipse - How to give dependency between projects?(Eclipse - 如何在项目之间赋予依赖关系?)
问题描述
我在 Eclipse 中有两个 java 项目.第二个是使用第一个的罐子.当我尝试从第二个班级导航到第一个班级时,它会打开该文件的 .class
.但我想打开第一个项目文件.请帮忙.
I have two java projects in eclipse. Second one is using first one's jar. When I try to navigate to first one's class from second one, it opens .class
of that file. But I want to open the first one project file. Please help.
提前致谢.
推荐答案
如果您想将您的第二个项目与您的第一个项目链接,请不要将第一个项目以 JAR 文件的形式添加到第二个项目.
If you want to link your second project with your first project, don't add the first project in form of a JAR file to the second.
打开第二个项目的项目属性并选择Java Build Path".在Projects"选项卡的右侧,您可以将您的第一个项目添加为构建路径上的必需项目".
Instead open the project properties of the second project and select "Java Build Path". On the right side on the "Projects" tab you can add your first project as "required project on the build path".
项目 1 的类文件现在已添加到项目 2 的类路径中.如果单击类名,您将直接进入源代码.
The class files of project 1 are now added to the class path of project 2. And if you click on a class name you directly get to the source code.
这篇关于Eclipse - 如何在项目之间赋予依赖关系?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eclipse - 如何在项目之间赋予依赖关系?


基础教程推荐
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01