IntelliJ Maven项目导入

时间:2019-03-28 18:19:23

标签: java maven intellij-idea ide

将现有的maven项目导入到IntelliJ IDE中之后。为什么项目名称仅作为“主要”出现?

enter image description here

我只是将现有的maven项目打开到IntelliJ中。 请帮助解决该问题的方法。

2 个答案:

答案 0 :(得分:3)

问题在于class YourNewAdmin(admin.ModelAdmin): ... def formfield_for_foreignkey(self, db_field, request, **kwargs): if db_field.name == 'your_fk_field': """ For your FK field of choice, override the dropdown style """ kwargs["widget"] = django.forms.widgets.Select(attrs={ 'style': 'width: 250px;' }) return super().formfield_for_foreignkey(db_field, request, **kwargs) 是您项目的根。项目的根目录是main所在的目录。您应该考虑Standard Directory Layout

enter image description here

答案 1 :(得分:2)

您的pom.xml文件应该位于根目录中,而不是main目录中。

现在,您将pom.xml放在main目录中,以便IntellijIDEA将main识别为maven模块。 请将您的pom.xml移动到与src目录相同的级别。