package com.design.base.utils; import java.beans.PropertyEditorSupport; import java.util.Date; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.annotation.InitBinder; import org.springframework.web.bind.annotation.ModelAttribute; public abstract class BaseController { protected static final String JSP_MESSAGE = "jsp/message"; protected HttpServletRequest request; protected HttpServletResponse response; protected HttpSession session; protected ServletContext application; @ModelAttribute public void setServletAPI(HttpServletRequest request,HttpServletResponse response){ this.request = request; this.response = response; this.session = request.getSession(); this.application = this.session.getServletContext(); } @InitBinder public void initDate(WebDataBinder dataBinder){ dataBinder.registerCustomEditor(Date.class , new PropertyEditorSupport(){ @Override public void setAsText(String text ) throws IllegalArgumentException { setValue(DateHelper.parseDate(text)); } }); } }
最近下载更多
最近浏览更多
lz88888 LV12
10月17日
Zyy19820821 LV2
9月16日
lingtiejing LV15
6月28日
sunlea LV20
6月23日
gejun666 LV1
6月18日
lilitu LV6
5月29日
李俊雄 LV3
5月8日
WaZiN7 LV6
4月25日
1134116035
2月28日
暂无贡献等级
取个啥名字好呢 LV6
1月25日