我正在使用spring和maven处理webapp,并希望能够在本地tomcat服务器和intellij中运行该应用程序。这种依赖似乎是罪魁祸首。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
当我删除此依赖项时,应用程序在intellij中运行正常,因为其他依赖项但是无法在tomcat上运行。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
我可以设置一些东西来自动使用intellij的正确依赖吗?
答案 0 :(得分:2)
您可以在pom.xml中设置maven配置文件,然后使用Intellij的特定配置文件。 Intellij允许您在运行构建时选择配置文件。
<profiles>
<profile>
<id>intellij</id>
…
<dependencies>
<dependency>…</dependency>
</dependencies>
…
</profile>
<profile>
<id>release</id>
…
<dependencies>
<dependency>…</dependency>
</dependencies>
…
</profile>