• 大小: 2.55MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-29
  • 语言: Java
  • 标签: struts1  jar  java  

资源简介

struts1简单实例和jar包,供学习与参考。

资源截图

代码片段和文件信息

package cn.itcast;

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;

public class LoginAction extends Action
{
@Override
public ActionForward execute(ActionMapping mapping ActionForm form
HttpServletRequest request HttpServletResponse response)
throws Exception
{
LoginForm loginForm = (LoginForm) form;
String returnURLKeyWord = ““;
if (loginForm.getUsername().equals(“test“))
{
returnURLKeyWord = “loginSuccess“;
}
else
{
returnURLKeyWord = “loginFailure“;
}
return mapping.findForward(returnURLKeyWord);
}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         841  2013-04-02 22:32  strutstest\.classpath
     文件        1043  2013-04-02 22:16  strutstest\.project
     文件         503  2013-04-02 21:31  strutstest\.settings\.jsdtscope
     文件         364  2013-04-02 21:31  strutstest\.settings\org.eclipse.jdt.core.prefs
     文件         484  2013-04-02 22:16  strutstest\.settings\org.eclipse.wst.common.component
     文件         345  2013-04-02 21:31  strutstest\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2013-04-02 21:31  strutstest\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2013-04-02 21:31  strutstest\.settings\org.eclipse.wst.jsdt.ui.superType.name
     文件        1135  2013-04-06 22:24  strutstest\WebContent\Login.jsp
     文件         840  2013-04-02 20:58  strutstest\WebContent\LoginFailure.jsp
     文件         870  2013-04-02 20:58  strutstest\WebContent\LoginSuccess.jsp
     文件          39  2013-04-02 21:31  strutstest\WebContent\meta-INF\MANIFEST.MF
     文件      358273  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\antlr-2.7.2.jar
     文件      175348  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\bsf-2.3.0.jar
     文件      188671  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-beanutils-1.7.0.jar
     文件       90001  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-chain-1.1.jar
     文件      143602  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-digester-1.8.jar
     文件       31909  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-fileupload-1.1.1.jar
     文件       61562  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-io-1.1.jar
     文件       38015  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-logging-1.0.4.jar
     文件      138956  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\commons-validator-1.3.1.jar
     文件       65261  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\oro-2.0.8.jar
     文件      516487  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\standard-1.0.2.jar
     文件      328896  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-core-1.3.8.jar
     文件      264038  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-el-1.3.8.jar
     文件       39644  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-extras-1.3.8.jar
     文件       94545  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-faces-1.3.8.jar
     文件       19643  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-mailreader-dao-1.3.8.jar
     文件       17784  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-scripting-1.3.8.jar
     文件      251521  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-taglib-1.3.8.jar
     文件      119653  2013-04-02 22:33  strutstest\WebContent\WEB-INF\lib\struts-tiles-1.3.8.jar
............此处省略6个文件信息

评论

共有 条评论