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

📄 beerselectaction.java

📁 This java program help user to write code in Struts MVS Model.
💻 JAVA
字号:
package com.example.web; // Model importsimport com.example.model.*;import java.util.*;// Struts importsimport org.apache.struts.action.Action;import org.apache.struts.action.ActionMapping;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionForward;// Servlet importsimport javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;public class BeerSelectAction extends Action {  public ActionForward execute(ActionMapping mapping, ActionForm form,			       HttpServletRequest request,			       HttpServletResponse response) {      // Cast the form to the application-specific form      BeerSelectForm myForm = (BeerSelectForm) form;      // Process the business logic      BeerExpert be = new BeerExpert();      ArrayList result = be.getBrands(myForm.getColor());      // Forward to the Results view      // (and store the data in the request-scope)      request.setAttribute("styles", result);      return mapping.findForward("show_results");    }}

⌨️ 快捷键说明

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