Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个项目:A 和 B。B 依赖于 A。现在我在 B 中有一个包,我想移入 A。我想知道什么是安全正确的方法并保留所有依赖项更新。
非常感谢 :)
PS:现在A和B之间的依赖已经设置好了。并且出于编辑 A 的目的,将其设为库可能并不好
右键单击包。
Refactor > Move
选择目标项目。
重构操作会改变代码的结构,而不会改变其语义行为。
Eclipse:移动和复制Java元素
将 A 设为库(Check Is Library)并在 B 中提供其参考。
只需选择包 --> 按 Ctrl + C 。然后转到您要移动包的目的地->按Ctrl + V。