模块不依赖于Intellij IDEA 2017.2.5 Java 9

时间:2017-09-30 18:02:41

标签: java intellij-idea java-9

我刚刚在命令行中测试了我对java 9模块的理解。 然后我转到Intellij IDEA 2017.2.5进行测试。在那里,我面临错误module is not in dependencies不知道为什么intellij会显示错误。

我只需在module-info.java中将所需语句写为exportsrequires

然后我使用Intellij智能来解决IDEA的错误。只需ALT + ENTER然后点击Add dependency on module 'module-name-here'。 但我不知道Intellij在幕后做了什么。有什么想法吗?

1 个答案:

答案 0 :(得分:7)

但我不知道Intellij在幕后做了什么。有什么想法吗?

将模块添加到当前模块的模块路径中。 这与向Java8添加库/依赖项非常类似,直到Java8使用imports

可以使用以下步骤手动完成: -

~> Project Settings 
~> Modules > Select module you want to add dependency to
~> Dependencies > Add dependency

enter image description here