tomcat 添加用户
Posted albert_think
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat 添加用户相关的知识,希望对你有一定的参考价值。
一 tomcat-users.xml
<role rolename="tomcat"/>
<role rolename="role1"/>
<role rolename="manager-gui"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="role1" password="tomcat" roles="role1"/>
<user username="admin" password="admin" roles="manager-gui"/>
以上是关于tomcat 添加用户的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Spring Boot 应用程序中将用户添加到嵌入式 tomcat?