package com.yiya.action;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.servlet.ModelAndView;
import com.yiya.edit.MyEditor;
import com.yiya.utils.HtmlUtil;
import com.yiya.utils.URLUtils;
public class BaseAction{
public final static String SUCCESS ="success";
public final static String MSG ="msg";
public final static String DATA ="data";
public final static String LOGOUT_FLAG = "logoutFlag";
@InitBinder
protected void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), true));
binder.registerCustomEditor(int.class,new MyEditor());
}
/**
* 获取IP地址
* @param request
* @return
*/
public String getIpAddr(HttpServletRequest request) {
String ip = request.getHeader("x-forwarded-for");
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader("Proxy-Client-IP");
}
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader("WL-Proxy-Client-IP");
}
if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
ip = request.getRemoteAddr();
}
return ip;
}
/**
* 所有ActionMap 统一从这里获取
* @return
*/
public Map<String,Object> getRootMap(){
Map<String,Object> rootMap = new HashMap<String, Object>();
//添加url到 Map中
rootMap.putAll(URLUtils.getUrlMap());
return rootMap;
}
public ModelAndView forword(String viewName,Map context){
return new ModelAndView(viewName,context);
}
public ModelAndView error(String errMsg){
return new ModelAndView("error");
}
/**
*
* 提示成功信息
*
* @param message
*
*/
public void sendSuccessMessage(HttpServletResponse response, String message) {
Map<String, Object> result = new HashMap<String, Object>();
result.put(SUCCESS, true);
result.put(MSG, message);
HtmlUtil.writerJson(response, result);
}
/**
*
* 提示失败信息
*
* @param message
*
*/
public void sendFailureMessage(HttpServletResponse response,String message) {
Map<String, Object> result = new HashMap<String, Object>();
result.put(SUCCESS, false);
result.put(MSG, message);
HtmlUtil.writerJson(response, result);
}
}
最近下载更多
sjwc88 LV4
1月25日
hefeng LV2
2024年5月27日
goccgoccgocc LV4
2024年5月9日
1303891 LV1
2024年4月14日
n2352441 LV4
2024年3月3日
quartz LV8
2024年1月22日
大鹏秀秀鹏鹏 LV14
2023年12月13日
ICEneco LV1
2023年10月21日
oulingqiao LV13
2023年10月7日
张朕朕 LV3
2023年9月8日
最近浏览更多
微信网友_7793599701979136 LV1
昨天
13752890376
11月4日
暂无贡献等级
sx0207
10月28日
暂无贡献等级
不爱吃香菜 LV1
10月17日
vincemokea LV9
9月16日
你是太阳 LV3
8月6日
wahukkk LV1
6月22日
ch0724
6月19日
暂无贡献等级
哈哈1呢 LV1
6月17日
15578157792 LV7
4月26日

