|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!在conf中编纂tomcat-users.xml文件
增添用户脚色,用户名和暗码
<rolerolename="user"/>
<userusername="用户名"password="暗码"roles="user"/>
保留加入
在网站目次WEB-INF中编纂web.xml文件
在<web-app>以后增加
<security-constraint>
<web-resource-collection>
<web-resource-name>网站目次</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>user</role-name>
</auth-constraint>
</security-constraint>
<security-role>
<role-name>user</role-name>
</security-role>
<login-config>
<!--<auth-method>BASIC</auth-method>-->
<auth-method>DIGEST</auth-method>
<realm-name>网站目次</realm-name>
</login-config>
保留加入
重启办事举行测试
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们! |
|