从web.xml入手分析jeecms配置文件
开头加载6个配置文件
1
2
3
4
5
6
|
/WEB-INF/config/application-context.xml
/WEB-INF/config/cache-context.xml
/WEB-INF/config/captcha-context.xml
/WEB-INF/config/jeecore-context.xml
/WEB-INF/config/jeecms-context.xml
/WEB-INF/config/quartz-task.xml
|
application-context.xml 这个是Spring的标准配置文件,这里面配置jdbc.properties文件并初始化相应数据库连接参数到bean实例;定义数据库表映射文件*.hbm.xm的路径,初始化lHibernate的session工厂;Hibernate的二级缓存配置文件也在这里加载。
cache-context.xml 配置具体的缓存策略,包含Session、内容统计、站点流量计数缓存
captcha-context.xml 验证码配置文件,可定义验证字符,可配置英文字母和数字,字符多少等
jeecore-context.xml 实例化com.jeecms.core这个包下面的类,ip地址包文件路径也在这里配置
jeecms-context.xml 实例化标签,模板里面用到的jeecms标签就是这儿初始化的,可加入自定义标签,还定义了模板前缀的国际化文件名路径
quartz-task.xml 定时任务时间控制器实例,实例化loadTask从数据库读取任务并加载到quartz定时器,比如多长时间执行一次采集,静态化首页之类的
执行时间过滤器
1
2
3
4
|
<filter>
<filter-name>processTime</filter-name>
<filter-class>com.jeecms.common.web.ProcessTimeFilter</filter-class>
</filter>
|
这个Filter过滤所有*.do, *.jspx, *.jhtml, *.htm, *.jsp的URL请求,可以用[@process_time/]标签显示处理时间
全局字符集过滤器
1
2
3
4
5
6
7
8
|
<filter>
<filter-name>encoding</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
</filter>
|
设置全局字符编码为UTF-8,避免中文出现乱码,过滤所有URL请求
Spring的OpenSessionInViewFilter过滤器
1
2
3
4
|
<filter>
<filter-name>osivFilter</filter-name>
<filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class>
</filter>
|
Spring为我们解决Hibernate的Session的关闭与开启问题提供了这个过滤器。Hibernate 允许对关联对象、属性进行延迟加载,但是必须保证延迟加载的操作限于同一个 Hibernate Session 范围之内进行。如果 Service 层返回一个启用了延迟加载功能的领域对象给 Web 层,当 Web 层访问到那些需要延迟加载的数据时,由于加载领域对象的 Hibernate Session 已经关闭,这些导致延迟加载数据的访问异常 (eg: org.hibernate.LazyInitializationException:(LazyInitializationException.java:42) – failed to lazily initialize a collection of role: cn.easyjava.bean.product.ProductType.childtypes, no session or session was closed org.hibernate.LazyInitializationException: failed to lazily initialize a collection of role: cn.easyjava.bean.product.ProductType.childtypes, no session or session was closed)
OpenSessionInViewFilter的主要功能是用来把一个Hibernate Session和一次完整的请求过程对应的线程相绑定。目的是为了实现”Open Session in View”的模式。例如: 它允许在事务提交之后延迟加载显示所需要的对象。OpenSessionInViewFilter 过滤器将 Hibernate Session 绑定到请求线程中,它将自动被 Spring 的事务管理器探测到。所以 OpenSessionInViewFilter 适用于 Service 层使用HibernateTransactionManager 或 JtaTransactionManager 进行事务管理的环境,也可以用于非事务只读的数据操作中。
XSS过滤器
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<filter>
<filter-name>XssFilter</filter-name>
<filter-class>com.jeecms.common.web.XssFilter</filter-class>
<init-param>
<param-name>SplitChar</param-name>
<param-value>@</param-value>
</init-param>
<init-param>
<param-name>FilterChar</param-name>
<param-value>'@"@\@#@:@%@></param-value>
</init-param>
<init-param>
<param-name>ReplaceChar</param-name>
<param-value>\'@\"@\@#@:@\\%@></param-value>
</init-param>
</filter>
|
以@符合作为分隔符,替换URL传来的特殊字符,比如‘ | ”| # |:
管理端Servlet初始化
1
2
3
4
5
6
7
8
9
|
<servlet>
<servlet-name>JeeCmsAdmin</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/jeecms-servlet-admin.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
|
前端Servlet初始化
1
2
3
4
5
6
7
8
9
|
<servlet>
<servlet-name>JeeCmsFront</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/jeecms-servlet-front.xml</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
|
验证码Servlet
1
2
3
4
5
6
7
8
|
<servlet>
<servlet-name>Jcaptcha</servlet-name>
<servlet-class>com.jeecms.common.captcha.JcaptchaServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Jcaptcha</servlet-name>
<url-pattern>/captcha.svl</url-pattern>
</servlet-mapping>
|
数据库附件Servlet
1
2
3
4
|
<servlet>
<servlet-name>DbFile</servlet-name>
<servlet-class>com.jeecms.core.action.front.DbFileServlet</servlet-class>
</servlet>
|
Spring上下文加载监听器
1
2
3
4
5
6
|
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
</listener>
|
ContextLoaderListener 配置这个的作用是通过Spring来加载相应的配置文件,也就是最开始那几个文件为什么能加载到web容器去的原因
IntrospectorCleanupListener 可以保证在web应用关闭的时候释放与掉这个web应用相关的classloader和由它们管理的类,防止内存泄露,在源代码里面没有直接使用JavaBeans Introspector,但是这里面加入了Quartz库,可能会出现内存泄露问题,所以需要加上
session有效时间
1
2
3
|
<session-config>
<session-timeout>20</session-timeout>
</session-config>
|
默认配置的是20分钟的有效session时间,也就是说20分钟后没应用活动,那session就失效
默认的欢迎页面
1
2
3
4
5
|
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.shtml</welcome-file>
<welcome-file>index.jhtml</welcome-file>
</welcome-file-list>
|
剩下的部分就是错误页面配置和资源的媒体类型。其实感觉可以不用配置mime-type,web容器里面有就ok了。