博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSH中web.xml
阅读量:6882 次
发布时间:2019-06-27

本文共 1298 字,大约阅读时间需要 4 分钟。

<?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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Blog_SSH</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>

<filter>

<filter-name>openSessionView</filter-name>
<filter-class>fiter.OpenAndView</filter-class>
</filter>
<filter-mapping>
<filter-name>openSessionView</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>

<filter-mapping>

<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

转载于:https://www.cnblogs.com/yy-TANG/p/7843091.html

你可能感兴趣的文章
gdbsever 使用说明
查看>>
用bootstrap模态框的时候,点击多少次按钮(确定、关闭),后台提交多少次Ajax,重复提交...
查看>>
hdu 1575 Tr A(矩阵快速幂)
查看>>
Invocation
查看>>
To be learned
查看>>
ActiveMQ
查看>>
rhel 7安装Mysql
查看>>
8、字符串操作
查看>>
React-Native获取文本框的值
查看>>
[导入]《WAP业务入门》培训材料
查看>>
Entity Framework
查看>>
简单数据结构总结——单调队列
查看>>
资源文件
查看>>
JS原型链与继承别再被问倒了
查看>>
SQL按照日、周、月、年、时间段统计数据
查看>>
通过全备+主从同步恢复被drop的库或表
查看>>
色环电阻的阻值识别
查看>>
面试TodoList
查看>>
我想参与TINY框架的构建,有什么要求没有?
查看>>
MySQL 加锁处理分析
查看>>