溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

tomcat 設(shè)置項(xiàng)目 密碼登陸

發(fā)布時(shí)間:2020-07-23 00:56:32 來源:網(wǎng)絡(luò) 閱讀:1622 作者:wyy962653920 欄目:開發(fā)技術(shù)

設(shè)置 tomcat-user.xml


<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
    <role rolename="yy_role"/>
    <user username="yyadmin" password="yyadmin" roles="yy_role"/>
</tomcat-users>


自己的工程下設(shè)置web.xml


<?xml version="1.0" encoding="UTF-8"?>  
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">  
  <display-name>app</display-name>  
  <welcome-file-list>  
    <welcome-file>index.html</welcome-file>  
    <welcome-file>index.htm</welcome-file>  
    <welcome-file>index.jsp</welcome-file>  
    <welcome-file>default.html</welcome-file>  
    <welcome-file>default.htm</welcome-file>  
    <welcome-file>default.jsp</welcome-file>  
  </welcome-file-list>  
    
<security-constraint>
      <web-resource-collection>
         <web-resource-name>force login</web-resource-name>
         <!-- Define the context-relative URL(s) to be protected -->
         <url-pattern>/*</url-pattern>
         <!-- If you list http methods, only those methods are protected -->
      </web-resource-collection>
      <auth-constraint>
         <!-- Anyone with one of the listed roles may access this area -->
         <role-name>yy_role</role-name>
      </auth-constraint>
    </security-constraint>
	<login-config>   
	<auth-method>BASIC</auth-method> 
	<realm-name>force login</realm-name>
	</login-config>
    <!-- Security roles referenced by this web application -->
    <security-role>
      <role-name>yy_role</role-name>
    </security-role>  
   
</web-app>


測(cè)試:要加密的項(xiàng)目

tomcat 設(shè)置項(xiàng)目 密碼登陸


測(cè)試:確認(rèn)不影響網(wǎng)站其他項(xiàng)目

tomcat 設(shè)置項(xiàng)目 密碼登陸


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI