web.xml

The web.xml web application descriptor描述符号 file represents the core of the Java web application, so it is appropriate适当的 that it is also part of the core of the Struts framework. In the web.xml file, Struts defines its FilterDispatcher, the Servlet Filter class that initializes the Struts framework and handles操纵 all requests. This filter can contain initialization parameters that affect what, if any, additional附加的 configuration files are loaded and how the framework should behave.

In addition添加 to the FilterDispatcher, Struts also provides an ActionContextCleanUp class that handles special特别的 cleanup tasks任务 when other filters, such as those used by Sitemesh, need access to an initialized Struts framework.

Key Initialization Parameters

  • config - a comma-delimited被限定 list of XML configuration files to load.

  • actionPackages - a comma-delimited list of Java packages to scan扫描 for Actions.

  • configProviders - a comma-delimited list of Java classes that implement the ConfigurationProvider interface that should be used for building the Configuration.

  • loggerFactory - The class name of the LoggerFactory implementation.

  • * - any other parameters are treated as framework constants常量.

Why the Filter is mapped with /* and how to configure explicit明确的 exclusions除外。。 (since 2.1.7)
In the example above we've mapped the Struts 2 dispatcher to /*, so Struts 2 has a crack裂缝 at all incoming进来的 requests. This is because Struts 2 serves static content from its jar files, including Dojo JavaScript files (if using S2.0, or the Dojo plugin in S2.1+) and FreeMarker templates模板 for the Struts 2 tags标签 that produce HTML.

If we change the filter mapping to something else, for example /*.html, we must take获得 this in to account and extract提取 the content that would normally正常的 be served from the Struts 2 jar files, or some other solution解决方案.

Since Struts 2.1.7, you are able to provide a comma逗号 seperated分离 list of patterns模式 for which when matching against the
request URL the Filter will just pass by. This is done via the configuration option struts.action.excludePattern, for example in your struts.xml

<struts>
    <constant name="struts.action.excludePattern" value=".*unfiltered.*,.*\\.nofilter"/>
    ...

</struts>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值