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

📄 prepareorderaction.java

📁 Sample Hibernate Shopping Cart Application
💻 JAVA
字号:
/*
 * PrepareOrderAction.java
 *
 * Created on February 18, 2005, 3:27 PM
 */

package org.simplecart.webapp.actions;

import javax.servlet.http.*;

import org.apache.struts.actions.DispatchAction;
import org.apache.struts.action.*;

import org.apache.commons.beanutils.PropertyUtils;

import org.apache.log4j.Category;

import net.sf.hibernate.HibernateException;

import org.simplecart.persistence.HibernateUtility;

import org.simplecart.webapp.Constants;
import org.simplecart.webapp.forms.OrderForm;

import org.simplecart.account.Customer;
import org.simplecart.base.Address;
import org.simplecart.account.billing.CreditCardBillingDetails;
import org.simplecart.account.billing.CreditCardType;
import org.simplecart.dao.CustomerDAO;
import org.simplecart.dao.SalesOrderDAO;


/**
 *
 * @author Daniel Watrous
 */
public class PrepareOrderAction extends DispatchAction {
    
    private CustomerDAO cdao;
    private static Category cat = Category.getInstance(PrepareOrderAction.class.getName());

    /**
     */
    public ActionForward enterAddress(ActionMapping mapping,
            ActionForm form,
            HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        
        // cast my form to a useful Type
        OrderForm orderForm = (OrderForm) form;

        // get the session to store the new user object
        HttpSession session = request.getSession();
        
        Address orderAddress = new Address();
        PropertyUtils.copyProperties(orderAddress, orderForm);
        
        // store customer object in the session
        session.setAttribute(Constants.PREPARE_ORDER_ADDRESS,orderAddress);
        
        return mapping.findForward(Constants.ENTER_BILLING_KEY);
        
    }

    /**
     */
    public ActionForward enterBilling(ActionMapping mapping,
            ActionForm form,
            HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        
        // get the session to store the new user object
        HttpSession session = request.getSession();
        
        // cast form to appropriate type
        OrderForm billingForm = (OrderForm) form;
        
        // get the customer object from the session
        Customer customer = (Customer) session.getAttribute(Constants.LOGGED_IN_USER_KEY);
        
        // copy form-bean values to new Stake and Address objects
        CreditCardBillingDetails creditCardDetails = new CreditCardBillingDetails();
        creditCardDetails.setCreditCardType(CreditCardType.getInstance(billingForm.getCreditCardType()));
        creditCardDetails.setCreditCardExpirationMonth(billingForm.getCreditCardExpirationMonth());
        creditCardDetails.setCreditCardExpirationYear(billingForm.getCreditCardExpirationYear());
        creditCardDetails.setCreditCardNumber(billingForm.getCreditCardNumber());
        creditCardDetails.setCreditCardCVVSCode(billingForm.getCreditCardCVVSCode());
        
        // attache the address to this new customer
        customer.addBillingDetails(creditCardDetails);
        
        // get a DAO for the new Stake
        cdao = new CustomerDAO();
        
        // store the new Stake
        cdao.makePersistent(customer);
        
        // place billing details in session for convenience
        session.setAttribute(Constants.PREPARE_ORDER_BILLING, creditCardDetails);
        
        // commit this transaction
        HibernateUtility.commitTransaction();
        HibernateUtility.closeSession();
                
        return mapping.findForward(Constants.REVIEW_ORDER_KEY);
    }

    /**
     */
    public ActionForward displayDetails(ActionMapping mapping,
            ActionForm form,
            HttpServletRequest request,
            HttpServletResponse response) throws Exception {
        
        return mapping.findForward(Constants.REVIEW_ORDER_KEY);
    }

}

⌨️ 快捷键说明

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