本文主要是介绍Maven--403权限问题解决方案(求解决),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
我的程序配置方案如下(大牛们相信你们不只是一个传说):
目的:实现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
这篇关于Maven--403权限问题解决方案(求解决)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!