⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addproduceproductaction.java

📁 这是本人曾经在公司里用的,内部开发框架,基于struts+hibernate今天分享给大家
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package cn.bway.foreigntrade.order.produceproduct.action;

import java.sql.Connection;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

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;
import org.hibernate.Session;
import org.hibernate.Transaction;

import cn.bway.common.WebConstant;
import cn.bway.common.action.BaseAction;
import cn.bway.common.code.codeDao;
import cn.bway.common.dao.HibernateSessionFactory;
import cn.bway.foreigntrade.order.produceproduct.form.ProduceproductForm;
import cn.bway.foreigntrade.order.produceproduct.impl.ProduceproductManagerFactory;
import cn.bway.foreigntrade.order.produceproduct.model.Produceproduct;

/** 
 * MyEclipse Struts
 * Creation date: 03-12-2008
 * 
 * XDoclet definition:
 * @struts.action path="/addExportclient" name="produceproductForm" scope="request" validate="true"
 */
public class AddProduceproductAction extends BaseAction {
	/*
	 * Generated Methods
	 */

	/** 
	 * Method execute
	 * @param mapping
	 * @param form
	 * @param request
	 * @param response
	 * @return ActionForward
	 */
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response) {
		ProduceproductForm eForm = (ProduceproductForm) form;// TODO Auto-generated method stub
		ActionErrors errors = new ActionErrors();
		Session sess =HibernateSessionFactory.currentSession();;
		Transaction tx = sess.beginTransaction();
		String returnStr = null;
		Connection conn = null;
		try {

			request.setCharacterEncoding("utf-8");
			Produceproduct exp=new Produceproduct();
			exp.setOrderid(eForm.getOrderid().toString());
			exp.setProductcode(eForm.getProductcode().toString());
			exp.setProductname(eForm.getProductname().toString());
			exp.setGuige(eForm.getGuige().toString());
			exp.setTotals(eForm.getTotals().toString());
			exp.setColor(eForm.getColor().toString());
			exp.setUnit(eForm.getUnit().toString());
			exp.setMoneytype(eForm.getMoneytype().toString());
			exp.setSuttle(eForm.getSuttle().toString());
			exp.setDiscount(eForm.getDiscount().toString());
			exp.setPrice(eForm.getPrice().toString());
			exp.setMoney(eForm.getMoney().toString());
			exp.setFullmoney(eForm.getFullmoney().toString());
			exp.setSizes(eForm.getSizes().toString());
//			new codeDao().insertCode("Produceproduct", "出口询价(客户)", "id","P");//表名,菜单名,ID最大数,符号
			
//			ProduceproductManagerFactory.getProduceproductManager().addProduceproduct(exp);
			sess.save(exp);
			tx.commit();
			returnStr = WebConstant.FORWARD_INITPAGE;
		} catch (Exception e) {
			errors.add(ActionErrors.GLOBAL_ERROR, new ActionError("edu.system.excption", e.getMessage()));
			this.saveErrors(request, errors);
			tx.rollback();
			e.printStackTrace();
		} finally {
			try {
				if (null != conn) {
					conn.close();
				}
			} catch (Exception ex) {
				ex.printStackTrace();
			}
			HibernateSessionFactory.closeSession();
		}
		return mapping.findForward(returnStr);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -