3.Struts类型转化器:Action

来源:互联网 发布:淘宝库克运动是正品吗 编辑:程序博客网 时间:2024/05/22 17:38
package com.bjpowernode.struts;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.struts.action.Action;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionForward;import org.apache.struts.action.ActionMapping;/** * @author Administrator * */public class TypeConvertTestAction extends Action {@Overridepublic ActionForward execute(ActionMapping mapping, ActionForm form,HttpServletRequest request, HttpServletResponse response)throws Exception {return mapping.findForward("success");}}

原创粉丝点击