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

📄 inputorderaction.java~4~

📁 定单管理系统
💻 JAVA~4~
字号:
package com.order.action;import org.apache.struts.action.*;import javax.servlet.http.*;public class InputOrderAction extends Action {  public ActionForward perform(ActionMapping actionMapping, ActionForm actionForm, HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) {    /**@todo: complete the business logic here, this is just a skeleton.*/    OrderActionForm form = (OrderActionForm) actionForm;  OrderLogic logic = new OrderLogic();  logic.setForm(form);  HttpSession session = httpServletRequest.getSession(false); if(session!=null) {   Customer  customer = (Customer)session.getAttribute("pass");   logic.getOrders(customer.getCustomerUID()); }  logic.closeDAO();  return actionMapping.findForward("listorder");  }}

⌨️ 快捷键说明

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