12 2015 档案
-
分页显示时的序号显示
摘要:forEach : items=page.results var="store" varStatus="st"${(st.index+1)+((page.pageNo-1)*page.pageSize)} 阅读全文
-
4.2springmvc校验
摘要:1.hibernate的校验框架validation所需要jar包:2 在applicationContext.xml中配置校验器: ... 阅读全文
-
SpringMVC List绑定
摘要:需求:成绩录入(录入多门课成绩,批量提交)使用List接收页面提交的批量数据,通过包装pojo接收,在包装pojo中定义list属性public class ItemsQueryVo { //商品信息 private Items items; //为了系统 可扩展性... 阅读全文
-
Spring MVC数组绑定
摘要:需求:商品批量删除,用户在页面选择多个商品,批量删除。关键:将页面选择(多选)的商品id,传到controller方法的形参,方法形参使用数组接收页面请求的多个商品id// 批量删除 商品信息 @RequestMapping("/deleteItems") public String d... 阅读全文
-
SpringMVC 自定义参数绑定实现日期类型绑定
摘要:package cn.itcast.ssm.controller.converter;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;import org.springfr... 阅读全文
-
Post和get乱码
摘要:post 在web.xml中添加CharacterEncodingFilterorg.springframework.web.filter.CharacterEncodingFilterencodingutf-8CharacterEncodingFilter/*get修改tomcat配置文件添加编码... 阅读全文
-
关于SSH整合中对于Hibernate的Session关闭的问题
摘要:在web.xml的Struts2的配置上面加上 OpenSessionInViewFilter org.springframework.orm.hibernate4.support.OpenSessionInViewFilter ... 阅读全文
-
Spring整合Struts2
摘要:①. 正常加入 Struts2②. 在 Spring 的 IOC 容器中配置 Struts2 的 Action注意: 在 IOC 容器中配置 Struts2 的 Action 时, 需要配置 scope 属性, 其值必须为 prototype ③. 配置 Struts2 的配置文件: action... 阅读全文
-
Spring的声明试事务
摘要:1 在配置文件中加入: 2 在方法名上添加注解:@Transactional( propagation=Propagation.REQUIRES_NEW, isolation=Isolation.READ_COMMITTED, readOnly=false, timeout=3 ) //1.使用 p 阅读全文
-
spring-AOP-添加日志
摘要:1 把一个类声明为一个切面:①需要把该类放入到IOC中,②再声明为一个切面(@Aspect @Component)@Order(1):指定顺序2 在配置文件中添加如下配置:package com.atguigu.aop;import java.util.Arrays;import org.aspec... 阅读全文