web.xml配置文件
2020-05-14 15:48:10 0 举报
AI智能生成
web.xml
作者其他创作
大纲/内容
干什么用的?
1. 一个web中可以没有web.xml文件,也就是说,web.xml文件并不是web工程必须的。
2. web.xml文件是用来初始化配置信息:比如Welcome页面、servlet、servlet-mapping、filter、listener、启动加载级别等。
3.当你的web工程没用到这些时,你可以不用web.xml文件来配置你的Application。
4.当前,主要是用来加载spring,然后再由spring去加载别的配置
和Tomcat的web.xml区别
本质文件一样的,都是为了启动web应用的上下文配置,加载顺序tomcat->应用。
节点
概要设置
节点加载顺序
ServletContext -> context-param -> listener -> filter -> servlet
其中servlet和filter可以配置多个,所以按配置顺序加载
节点说明
display-name
description
context-param
description
param-name
param-value
servlet
servlet-name
servlet-class
init-param
param-name
param-value
description
load-on-startup
display-name
servlet-mapping
servlet-name
url-pattern
filter
filter-name
filter-class
filter-mapping
filter-name
url-pattern
listener
listener-class
session-config
session-timeout
mime-mapping
jsp-config
taglib
taglib-uri
taglib-location
jsp-property-group
description
display-name
url-pattern
el-ignored
page-encoding
scripting-invalid
include-prelude
include-coda
icon
large-icon
small-icon
error-page
error-code
exception-type
location
distributable
ejb-local-ref
description
ejb-link
ejb-ref-name
ejb-ref-type
local
local-home
ejb-ref
description
ejb-link
ejb-ref-name
ejb-ref-type
local
local-home
0 条评论
下一页