⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 web.xml

📁 JavaWeb高级特性书中源代码
💻 XML
字号:
<security-constraint>	
	<web-resource-collection>
		<web-resource-name>webapp</web-resource-name>
		<url-pattern>/*.jsp</url-pattern>
		<url-pattern>/*.html</url-pattern>
		<http-method>GET</http-method>
		<http-method>POST</http-method>
	</web-resource-collection>
	<auth-constraint>
		<role-name>it315</role-name>
		<role-name>guest</role-name>
	</auth-constraint>
</security-constraint>
	<login-config>
		<auth-method>BASIC</auth-method>
		<realm-name>it315 realm</realm-name>
	</login-config>
<security-role>
	<role-name>it315</role-name>
	<role-name>guest</role-name>
</security-role>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -