我的程序配置方案如下:
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>
<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
原文地址:http://blog.csdn.net/kzfc1/article/details/39924543