首页>代码>ssm+mysql开发企业调味品进销存支持管理系统>/CondimentMIS/src/com/design/base/utils/BaseController.java
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));
            }
        });
    }

    
    
}
最近下载更多
微信网友_6602457430806528  LV6 2023年9月21日
sjl821120  LV6 2023年6月10日
qazwer11  LV5 2022年12月25日
184445428  LV6 2022年12月3日
小猿猿  LV6 2022年9月18日
591231555  LV20 2022年4月18日
叶子2022  LV1 2022年3月11日
扬帆起航  LV2 2022年3月3日
clf123456  LV12 2021年8月9日
xxxdragon  LV10 2021年6月29日
最近浏览更多
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日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友