2
我不知道,爲什麼maven不會將Intellij添加到「添加框架支持」窗口中。我需要這個支持讓Intellij生成一些文件,如dispatcher-servlet.xml。我不知道哪個負責添加Spring到這個窗口,maven或Intellij?我添加了spring依賴項,所有插件都已安裝。我有Ultimate Intellij 2017.1版本。Intellij Idea and Spring和Maven:添加框架支持
的pom.xml
<groupId>com.test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>4.3.7.RELEASE</version>
</dependency>
</dependencies>
</project>