当 jar 添加到项目时,Eclipse 是否会对 jar 进行二进制兼容性检查?

发布于 2024-09-15 08:01:13 字数 205 浏览 10 评论 0原文

当我赞扬 Maven 的依赖管理时,一位 Eclipse 用户告诉我(一位 IntelliJ 用户),他们不需要这样的东西,因为每当他们向项目中添加一个 jar 时,Eclipse 都会测试它与项目中其他 jar 的二进制兼容性。项目。

这是真的吗?这是 Eclipse 本身还是一个插件?
IntelliJ/Netbeans 中是否有类似的功能?

谢谢。

While I was singing the praises of Maven's dependency management, an Eclipse user told me (an IntelliJ user) they don't need stuff like that because any time they add a jar to a project Eclipse will test it's binary compatibility against other jars in the project.

Is this true? Is this Eclipse itself or a plugin?
Is there similar functionality available in IntelliJ/Netbeans?

Thanks.

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

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

发布评论

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

评论(2

回忆追雨的时光 2024-09-22 08:01:13

我在 Eclipse 和 Maven 中都不知道这样的事情(你需要类似 maven-clirr-plugin 来做一些接近的事情)。

I'm not aware of such a thing in neither Eclipse nor in Maven (you'd need something like the maven-clirr-plugin to do something approaching).

无戏配角 2024-09-22 08:01:13

我刚刚执行了以下操作:

  1. 安装 Eclipse
  2. 创建新项目
  3. 添加缺少依赖项的库。
  4. 创建一个执行类似于 System.out.println(com.library.AClass.class); 的类
  5. 请注意,Eclipse 不会抱怨。
  6. 运行它并在加载类时收到 java.lang.NoClassDefFoundError

这告诉我依赖性检查并不(总是)发生。

I just did the following:

  1. Install Eclipse
  2. Create new Project
  3. Add a library that is missing dependencies.
  4. Create a class that does something like System.out.println(com.library.AClass.class);
  5. Note that Eclipse does not complain.
  6. Run it and get java.lang.NoClassDefFoundError when the class is loaded.

This tells me dependency checks don't (always) happen.

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