ssh2
文章平均质量分 78
heroreh
这个作者很懒,什么都没留下…
展开
-
OpenSessionInViewFilter
OpenSessionInViewFilter Open Session in View的作用,就是允许在每次的整个request的过程中使用同一个hibernate session,可以在这个request任 何时期lazy loading数据。 如果是singleSession=false的话,就不会在每次的整个request的过程中使用同一个hibernate ...原创 2009-11-19 22:57:36 · 103 阅读 · 0 评论 -
Struts2 文件上传 之 文件类型 allowedTypes
'.a' : 'application/octet-stream', '.ai' : 'application/postscript', '.aif' : 'audio/x-aiff', '.aifc' : 'audio/x-aiff', '.aiff' : 'audio/x-aiff', '.au' : 'audio/basic', ...原创 2010-09-30 10:15:03 · 78 阅读 · 0 评论 -
struts2 json plugin includeProperties 包含MAP属性
<action name="dl" class="com.dqgb.action.document.DocumentAction" method="getDocumentList"> <result type="json"> <param name="includeProperties">^documentss\[\2011-05-12 17:29:10 · 140 阅读 · 0 评论 -
尚学堂struts2 ognl讲解
<?xml version="1.0" encoding="GB18030" ?> <%@ page language="java" contentType="text/html; charset=GB18030" pageEncoding="GB18030"%> <%@ taglib uri=&原创 2011-01-09 17:28:02 · 76 阅读 · 0 评论 -
struts2 request response session
struts2 中取得request response session import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts2.ServletActionContext; Ht...2010-09-17 17:45:16 · 88 阅读 · 0 评论 -
ssh中需要增加IntrospectorCleanupListener监听器
增加方式如下:<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> --> <listene...原创 2009-12-15 21:38:29 · 108 阅读 · 0 评论 -
<!-- OpenSessionInViewFilter --> 用法和问题 BatchSize
OpenSessionInViewFilter是Spring提供的一个针对Hibernate的一个支持类,其主要意思是在发起一个页面请求时打开Hibernate的Session,一直保持这个Session,直到这个请求结束,具体是通过一个Filter来实现的。 由于Hibernate引入了Lazy Load特性,使得脱离Hibernate的Session周期的对象如果再想通过getter方法...2009-12-14 12:42:46 · 106 阅读 · 0 评论 -
IllegalArgumentException
错误信息: Caused by: org.hibernate.HibernateException: org.hibernate.PropertyAccessException: IllegalArgumentException occurred calling getter of umbrella.pojo.EntertainmentPOJO.id at umbrella.tyrant.dao...2009-12-08 19:26:46 · 153 阅读 · 0 评论 -
深入OpenSessionInViewFilter内幕
最近不知道干些什么好,无论做什么都觉得没劲,为了强迫自己学习,准备研究些开源项目的源码,从中找点乐趣,先来个大家熟悉的OpenSessionInViewFilter,下面我将逐步分析OpenSessionInViewFilter 的源码,了解OpenSessionInViewFilter 的原理,欣赏spring优雅的代码,本文只分析源码不做功能介绍,如果有朋友不熟悉OpenSessionInVi...原创 2009-11-19 23:06:59 · 83 阅读 · 0 评论 -
struts2的s:iterator 标签 详解
struts2的s:iterator 可以遍历 数据栈里面的任何数组,集合等等 以下几个简单的demo: s:iterator 标签有3个属性: value:被迭代的集合 id :指定集合里面的元素的id status 迭代元素的索引 1:jsp页面定义元素写法 数组或list A 打印结果为: 1A2A3A4A5A 2:索引的...原创 2013-02-17 15:50:45 · 82 阅读 · 0 评论