2016年1月13日

摘要: 在web.xml中配置error-page在web.xml中有两种配置error-page的方法,一是通过错误码来配置,而是通过异常的类型来配置,分别举例如下:一. 通过错误码来配置error-page 500 /error.jsp 上面配置了当系统发生500错误(即服... 阅读全文
posted @ 2016-01-13 11:10 james-roger 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 第一步:在applicationContext.xml配置: classpath:/config/*.properties 第二步:建立配置文件内容:例... 阅读全文
posted @ 2016-01-13 10:08 james-roger 阅读(313) 评论(0) 推荐(0) 编辑

2016年1月8日

摘要: DigestUtils.md5Hex(authkey)org.apache.commons.codec.digest.DigestUtils; 阅读全文
posted @ 2016-01-08 16:38 james-roger 阅读(152) 评论(0) 推荐(0) 编辑

2015年12月30日

摘要: forEach : items=page.results var="store" varStatus="st"${(st.index+1)+((page.pageNo-1)*page.pageSize)} 阅读全文
posted @ 2015-12-30 14:12 james-roger 阅读(917) 评论(0) 推荐(0) 编辑

2015年12月27日

摘要: 1.hibernate的校验框架validation所需要jar包:2 在applicationContext.xml中配置校验器: ... 阅读全文
posted @ 2015-12-27 18:24 james-roger 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 需求:成绩录入(录入多门课成绩,批量提交)使用List接收页面提交的批量数据,通过包装pojo接收,在包装pojo中定义list属性public class ItemsQueryVo { //商品信息 private Items items; //为了系统 可扩展性... 阅读全文
posted @ 2015-12-27 18:08 james-roger 阅读(1869) 评论(0) 推荐(0) 编辑
摘要: 需求:商品批量删除,用户在页面选择多个商品,批量删除。关键:将页面选择(多选)的商品id,传到controller方法的形参,方法形参使用数组接收页面请求的多个商品id// 批量删除 商品信息 @RequestMapping("/deleteItems") public String d... 阅读全文
posted @ 2015-12-27 18:01 james-roger 阅读(376) 评论(0) 推荐(0) 编辑
摘要: package cn.itcast.ssm.controller.converter;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;import org.springfr... 阅读全文
posted @ 2015-12-27 14:45 james-roger 阅读(2220) 评论(0) 推荐(0) 编辑
摘要: post 在web.xml中添加CharacterEncodingFilterorg.springframework.web.filter.CharacterEncodingFilterencodingutf-8CharacterEncodingFilter/*get修改tomcat配置文件添加编码... 阅读全文
posted @ 2015-12-27 14:41 james-roger 阅读(203) 评论(0) 推荐(0) 编辑

2015年12月16日

摘要: 在web.xml的Struts2的配置上面加上 OpenSessionInViewFilter org.springframework.orm.hibernate4.support.OpenSessionInViewFilter ... 阅读全文
posted @ 2015-12-16 09:41 james-roger 阅读(379) 评论(0) 推荐(0) 编辑