📄 countryaction.java
字号:
//---------------------------------------------------------
// Application: Company Applcation
// Author : Cao guangxin
// File : CountryAction.java
//
// Copyright 2006 RelationInfo Software
// Writed at Wed Apr 12 08:58:55 CST 2006
// writed by Eclipse SDK
// Visit http://www.37signals.cn
//---------------------------------------------------------
package net.cn37signals.company.controller;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.sql.DataSource;
import net.cn37signals.company.dao.CountryDAO;
import net.cn37signals.company.model.Country;
import net.cn37signals.company.util.CacheManager;
import net.cn37signals.company.util.Pager;
import org.apache.commons.logging.LogFactory;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionError;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
public class CountryAction extends Action {
private org.apache.commons.logging.Log __log = LogFactory.getFactory().getInstance(this.getClass());
private static int PAGE_LENGTH = 20;
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) {
ActionForward myforward = null;
String myaction = mapping.getParameter();
if (isCancelled(request)) {
if (__log.isInfoEnabled()) {
__log.info(" [Country] " + mapping.getAttribute() + " - action was cancelled");
}
return mapping.findForward("cancel");
}
if (__log.isInfoEnabled()) {
__log.info(" [Country] action: "+myaction);
}
if ("".equalsIgnoreCase(myaction)) {
myforward = mapping.findForward("failure");
} else if ("VIEW".equalsIgnoreCase(myaction)) {
myforward = performView(mapping, form, request, response);
} else if ("EDIT".equalsIgnoreCase(myaction)) {
myforward = performEdit(mapping, form, request, response);
} else if ("ADD".equalsIgnoreCase(myaction)) {
myforward = performAdd(mapping, form, request, response);
} else if ("SAVE".equalsIgnoreCase(myaction)) {
myforward = performSave(mapping, form, request, response);
} else if ("REMOVE".equalsIgnoreCase(myaction)) {
myforward = performRemove(mapping, form, request, response);
} else if ("TRASH".equalsIgnoreCase(myaction)) {
myforward = performTrash(mapping, form, request, response);
} else if ("LIST".equalsIgnoreCase(myaction)) {
myforward = performList(mapping, form, request, response);
} else {
myforward = mapping.findForward("failure");
}
return myforward;
}
private ActionForward performList(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
try {
DataSource ds = getDataSource(request);
CountryDAO countryDAO = new CountryDAO(ds);
int offset;
int length = PAGE_LENGTH;
String pageOffset = request.getParameter("pager.offset");
if (pageOffset == null || pageOffset.equals("")) {
offset = 0;
} else {
offset = Integer.parseInt(pageOffset);
}
List countrys = countryDAO.list(offset, length);
String[] objKeys = {"Country", "list"};
String objKey = CacheManager.createKey(objKeys);
Integer size = (Integer)SizeCacheManager.getCache(objKey);
if(size == null) {
size = new Integer(countryDAO.getSize("country", ""));
SizeCacheManager.putCache(size, objKey, 1);
}
String url = request.getContextPath()+"/"+mapping.getPath()+".do";
String pagerHeader = Pager.generate(offset, size.intValue(), length, url);
request.setAttribute("pagerHeader", pagerHeader);
request.setAttribute("COUNTRYS", countrys);
} catch (Exception e) {
generalError(request, e);
return mapping.findForward("failure");
}
return mapping.findForward("success");
}
private ActionForward performView(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
CountryForm form = (CountryForm) actionForm;
try {
DataSource ds = getDataSource(request);
CountryDAO countryDAO = new CountryDAO(ds);
long id = Long.parseLong(request.getParameter("id"));
Country country = countryDAO.retrieve(id);
if (country == null) {
ActionErrors aes = new ActionErrors();
aes.add(aes.GLOBAL_ERROR, new ActionError("error.object.notfound", "Country"));
saveErrors(request, aes);
if (__log.isErrorEnabled()) {
__log.error(" [Country] Object not found");
}
} else {
org.apache.commons.beanutils.BeanUtils.populate(form, org.apache.commons.beanutils.BeanUtils.describe(country));
}
} catch (Exception e) {
generalError(request, e);
return mapping.findForward("failure");
}
return mapping.findForward("success");
}
private ActionForward performSave(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
CountryForm form = (CountryForm) actionForm;
try {
DataSource ds = getDataSource(request);
CountryDAO countryDAO = new CountryDAO(ds);
Country country = new Country();
org.apache.commons.beanutils.BeanUtils.populate(country, org.apache.commons.beanutils.BeanUtils.describe(form));
int strutsAction = form.getStrutsAction();
if (strutsAction == CountryForm.ADD) {
long id = country.getId();
if (countryDAO.retrieve(id) == null) {
countryDAO.insert(country);
} else {
sqlDuplicateError(request, "Country");
return mapping.findForward("failure");
}
} else if (strutsAction == CountryForm.EDIT) {
countryDAO.update(country);
}
} catch (Exception e) {
generalError(request, e);
return mapping.findForward("failure");
}
return mapping.findForward("success");
}
private ActionForward performEdit(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
CountryForm form = (CountryForm) actionForm;
form.setStrutsAction(CountryForm.EDIT);
try {
DataSource ds = getDataSource(request);
CountryDAO countryDAO = new CountryDAO(ds);
long id = Long.parseLong(request.getParameter("id"));
Country country = countryDAO.retrieve(id);
org.apache.commons.beanutils.BeanUtils.populate(form, org.apache.commons.beanutils.BeanUtils.describe(country));
} catch (Exception e) {
generalError(request, e);
return mapping.findForward("failure");
}
return mapping.findForward("success");
}
private ActionForward performAdd(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
CountryForm form = (CountryForm) actionForm;
form.setStrutsAction(CountryForm.ADD);
return mapping.findForward("success");
}
private ActionForward performRemove(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
return performView(mapping, actionForm, request, response);
}
private ActionForward performTrash(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) {
CountryForm form = (CountryForm) actionForm;
try {
DataSource ds = getDataSource(request);
CountryDAO countryDAO = new CountryDAO(ds);
long id = Long.parseLong(request.getParameter("id"));
countryDAO.delete(id);
} catch (Exception e) {
generalError(request, e);
return mapping.findForward("failure");
}
return mapping.findForward("success");
}
private void sqlDuplicateError(HttpServletRequest request, String objName) {
ActionErrors aes = new ActionErrors();
aes.add(aes.GLOBAL_ERROR, new ActionError("errors.database.duplicate", objName));
saveErrors(request, aes);
if (__log.isErrorEnabled()) {
__log.error(" [Country] Duplicate key Error - " + objName);
}
}
private void generalError(HttpServletRequest request, Exception e) {
ActionErrors aes = new ActionErrors();
aes.add(aes.GLOBAL_ERROR, new ActionError("error.general", e.getMessage()));
saveErrors(request, aes);
e.printStackTrace();
if (__log.isErrorEnabled()) {
__log.error(" [Country] Error - " + e.getMessage());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -