spring
iteye_171
这个作者很懒,什么都没留下…
展开
-
spring测试
一、软件下载地址(本人使用的spring是2.5版本) 1、spring-test.jar下载地址,我的是2.5版本 http://grepcode.com/snapshot/repo1.maven.org/maven2/org.springframework/spring-test/2.5 2、junit需要4.4版本,过高会出现java.lang.ClassNotFoundExc...原创 2012-02-08 09:55:32 · 90 阅读 · 0 评论 -
批量插入更新并返回对象
有一种需求叫做:批量插入或更新之后,返回操作后的值 public List<Stage> saveOrUpdateAll(final List<Stage> entities) throws DataAccessException { final List<Stage> stageList = new ArrayList<Stage>...原创 2012-05-03 10:51:20 · 254 阅读 · 0 评论 -
Spring mvc+hibernate框架搭建
待续,待续,明天再来 编写文档时间:2012-5-28 1、spring下载地址: Spring Framework 3.1.0.RELEASE is the current production release (requires Java 1.5+) http://www.springsource.org/download/community 2、hibernate下...原创 2012-05-29 23:37:21 · 237 阅读 · 0 评论 -
web项目如何获取容器中的bean对象?
from:http://blog.163.com/sir_876/blog/static/11705223201111544523333/ spring通过在web.xml 中配置ContextLoaderListener 来加载context配置文件,在DispatcherServlet中也可以来加载spring context配置文件,那么这两个有什么区别呢。 ContextLoade...原创 2013-01-25 15:46:57 · 264 阅读 · 0 评论