我的程序配置方案例如以下(大牛们相信你们不仅仅是一个传说):
目的:实现maven公布项目到tomcat以下。用eclipse一步到位调试。
pom.xml配置:
<plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.0</version> <configuration> <update>true</update> <charset>utf-8</charset> <url>http://localhost/manager/html</url> <server>mytomcat</server> <port>80</port> </configuration> </plugin>
maven--settings.xml配置:
<server> <id>mytomcat</id> <username>admin</username> <password>admin</password> </server>
tomcat-users.xml配置:
<role rolename="manager-gui"/> <user username="admin" password="admin" roles="manager-gui"/>注:曾測试了把全部权限增加。现象还是依然。
TOMCAT版本号:7.0.47
JDK版本号:1.7
问题例如以下:
eclipse运行:tomcat7:deploy
用浏览器訪问:http://localhost/manager/html/deploy?path=%2Fsecurity&update=true