当我使用 mvn tomcat:deploy of tomcat-maven-plugin 时出现 403 错误:
无法在项目 my-webapp 上执行目标 org.codehaus.mojo:tomcat-maven-plugin:1.0:deploy (default-cli):无法调用 Tomcat 管理器:服务器返回 HTTP 响应代码:URL 的 403:http://localhost:8080/manager/text/deploy?path=%2Fdms&war=
我认为这是因为 null 战争参数。但是为什么它是空的???
在 pom.xml 中有:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<configuration>
<warFile>target\my-webapp.war</warFile>
<server>myserver</server>
<url>http://localhost:8080/manager/text</url>
<path>/dms</path>
</configuration>
</plugin>