首页 > PHP资讯 > 工具库 > S2SH开发小程序的图文代码分享

S2SH开发小程序的图文代码分享

工具库
1. 源码准备:

1) struts2 源码:

a) struts-2.1.6-all.zip

b) xwork-2.1.6.rar

c) jp.gr.java_conf.ussiy.app.propedit_5.3.3.zip,eclipse 管理资源文件

2) spring2.5 源码:

a) spring-framework-2.5.6.zip

3) hibernate3.2 源码:

a) hibernate-distribution-3.3.2.GA-dist.zip

b) hibernate-annotations-3.4.0.GA.zip

c) slf4j-1.5.8.zip

2. SSH 所需要的 jar 包:

1) jar 包图解:

2) jar 包相关说明:

3. 所需注意的问题:

1) @Scope(value=”propotype”) 问题

a) 每定义的 action 类,需要定义其类型为: propotype ,在类上面加上:@Scope(value=”propotype”)

b) 如果不设置, spring 初始化的每个类,默认 Scope 值为 singleton 方式。然而 webWork 的Action 不是线程安全的,要求在多线程环境下必须是一个线程对应一个独立的实例,不能使用singleton 。所以,我们在 Spring 配置 webWork Action Bean 时,需要加上属性scope=”prototype” 或 singleton=”false” 。

2) OpenSessionInViewFilter 相关问题:

a) 由于 Hibernate 引入了 Lazy Load 特性 () ,使得脱离 Hibernate 的 Session 周期的对象如果再想通过 getter/load 方法取到其关联对象的值, Hibernate 会抛出一个 LazyLoad 的Exception 。

b) 解决这个问题, Spring 引入了这个 Filter ,使得 Hibernate 的 Session 的生命周期变长。

c) 具体配置:

     openSessionInView     org.springframework.orm.hibernate3.support.OpenSessionInViewFilter                    sessionFactoryBeanName          sf           openSessionInView          /* 

3) 中文乱码问题:

a) 中文乱码问题,在 struts.xml 中配置:

仍然无法解决。

b) 此为 strtust2.1.6 的一个 bug 问题,解决方法是使用 spring 提供 encodingFilter实现。

c) encodingFilter 具体配置:

	encodingFilter	org.springframework.web.filter.CharacterEncodingFilter			encoding		GBK			encodingFilter	/* 

4) filter 在web.xml 中的顺序问题:

a) 在web.xml 配置中功能越大的filter 应该越配在前面。

b) 多个filter 在过滤过程图解:

    如下:

5)上传文件时清除缓存filter:

     struts-cleanup     org.apache.struts2.dispatcher.ActionContextCleanUp    struts-cleanup     /*

在做上传文件的时候,要在web.xml中增加ActionContextCleanUp这个filter,如果不增加,会发生第一次上传取不到文件的情况

以上就是S2SH开发小程序的图文代码分享的详细内容,更多请关注 第一PHP社区 其它相关文章!

工具库

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持30不支持0