`
niceo
  • 浏览: 109832 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

(Struts )ATM 之 LoginForm

    博客分类:
  • J2EE
阅读更多
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.niceo.atm.struts.form;

import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

/** 
 * MyEclipse Struts
 * Creation date: 05-22-2008
 * 
 * XDoclet definition:
 * @struts.form name="loginForm"
 */
public class LoginForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/** crads_id property */
	private String crads_id;

	/** crads_pwd property */
	private String crads_pwd;

	/*
	 * Generated Methods
	 */

	/** 
	 * Method validate
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	public ActionErrors validate(ActionMapping mapping,
			HttpServletRequest request) {
		// TODO Auto-generated method stub
		return null;
	}

	/** 
	 * Method reset
	 * @param mapping
	 * @param request
	 */
	public void reset(ActionMapping mapping, HttpServletRequest request) {
		// TODO Auto-generated method stub
	}

	/** 
	 * Returns the crads_id.
	 * @return String
	 */
	public String getCrads_id() {
		return crads_id;
	}

	/** 
	 * Set the crads_id.
	 * @param crads_id The crads_id to set
	 */
	public void setCrads_id(String crads_id) {
		this.crads_id = crads_id;
	}

	/** 
	 * Returns the crads_pwd.
	 * @return String
	 */
	public String getCrads_pwd() {
		return crads_pwd;
	}

	/** 
	 * Set the crads_pwd.
	 * @param crads_pwd The crads_pwd to set
	 */
	public void setCrads_pwd(String crads_pwd) {
		this.crads_pwd = crads_pwd;
	}
}

 

分享到:
评论

相关推荐

    struts1 demo

    <form-bean name="LoginForm" type="com.yza.struts.form.LoginForm"></form-bean> <action path="/login" name="LoginForm" type="com.yza.struts.action.LoginAction" scope="request" input="/...

    Struts框架中struts-config.xml文件配置小结

    ### Struts框架中struts-config.xml文件配置详解 #### 一、引言 在Java Web开发领域,Struts是一个非常重要的MVC(Model-View-Controller)框架,它极大地简化了Web应用程序的开发过程。而在Struts框架中,`struts...

    struts1.2.9包下载

    <action path="/login" type="com.example.struts.LoginAction" name="loginForm" scope="request" input="/login.jsp"> </struts-config> ``` ### 核心概念详解 #### 1. 模型(Model) 模型层主要负责...

    struts1 用户登录(包含验证)

    <form-bean name="loginForm" type="com.wgy.struts.LoginForm" /> type="com.wgy.struts.LoginAction" name="loginForm" scope="request" validate="true"> <!-- 其他配置 --> </struts-...

    struts1框架环境搭建视频(登录小例子)

    Struts1是一个经典的Java Web开发框架,由Apache软件基金会维护,它主要负责处理MVC(Model-View-Controller)架构中的Controller部分。本教程通过一个简单的登录实例,将引导你了解如何搭建Struts1框架环境并进行...

    Struts与struts2比较学习

    ### Struts与Struts2比较学习 ...综上所述,虽然Struts仍然在某些项目中有所应用,但Struts2凭借其更多的优势逐渐成为Java Web开发领域的首选框架之一。对于开发者而言,选择合适的技术栈是项目成功的关键之一。

    一个Struts登陆实例

    在第四步,我们创建Struts的表单类`LoginForm.java`。这是一个ActionForm,继承自`org.apache.struts.action.ActionForm`。我们添加两个属性`loginName`和`loginPass`,并实现验证逻辑。在`validate()`方法中,检查...

    Struts1.2登录实例

    4. **配置struts-config.xml**:在文件中,我们需要声明LoginAction、LoginForm以及Action的输入和输出映射。例如,指定登录失败时返回的JSP页面。 5. **处理登录成功和失败**:在登录成功时,通常会跳转到一个受...

    struts2配置2.5版

    <package name="LoginForm" extends="struts-default"> <result> /login.jsp </struts> <!--1.使用 struts2.5.16 版本 2.lib 文件夹下放置:工程所需jar包 3.xml标签库为远程获取,路径:...

    struts1示例代码

    2. **配置struts-config.xml**:在`struts-config.xml`中,我们需要定义一个Action,指定Action类(可能是名为LoginAction的类),以及ActionForm(LoginForm)。同时,还需要定义一个或多个-forward,指明请求成功...

    struts1.x入门

    if (loginForm.getUsername().equals("struts")) { return mapping.findForward("loginSuccess"); } else { return mapping.findForward("loginFailure"); } } } ``` #### 四、配置 Struts 1. **Web.xml**...

    eclipse struts 简单实例图解

    5. 编写`login.jsp`,使用Struts标签创建表单,并将表单字段与`LoginForm`的属性关联起来。 6. 创建`success.jsp`和`failed.jsp`,显示相应的消息。 7. 编辑`struts-config.xml`,配置Action和Form Bean,以及Action...

    struts的错误处理

    ### Struts 的错误处理 #### 一、简介与背景 Struts 是一款开源的MVC(Model-View-Controller)框架,主要用于Java EE环境下的Web应用程序开发。它提供了一种结构化的方式来组织业务逻辑、视图层以及模型层,使得...

    struts登陆小测试(tomcat5.5)

    Struts是一个基于MVC(Model-View-Controller)设计模式的Java Web开发框架,由Apache软件基金会维护。在本项目“struts登陆小测试(tomcat5.5)”中,我们将探讨如何使用Struts框架构建一个简单的登录功能,并在...

    Struts1基本配置

    Struts1是一个经典的Java Web开发框架,它在20世纪末到21世纪初非常流行,主要用于构建MVC(Model-View-Controller)架构的Web应用程序。本篇将深入讲解Struts1的基本配置,帮助你理解和掌握这个框架的核心概念。 *...

    struts_login 源码共享

    Struts是Apache软件基金会下的一个开源项目,它是一款基于Java Servlet和JSP的MVC(Model-View-Controller)框架,用于构建企业级Web应用程序。本资料“struts_login”提供了一个基础的登录功能实现,适合初学者进行...

    struts各种配置

    ### Struts 各种配置详解 #### 一、概述 Struts 是一款开源的MVC框架,用于构建可扩展的企业级Java Web应用。它通过提供一套标准的开发模式和组件来简化开发流程,并且能够很好地与其他Java技术进行整合。本文将...

    struts-config.xml

    在Java Web开发领域中,Struts框架作为经典的MVC(Model-View-Controller)架构实现之一,为开发者提供了便捷的方式来构建可维护性和扩展性高的Web应用程序。其中,`struts-config.xml`是Struts框架的核心配置文件,...

    struts1架构登录代码

    Struts1是一个经典的Java Web开发框架,主要用于构建MVC(模型-视图-控制器)架构的应用程序。在本示例中,“struts1架构登录代码”是一个基于MyEclipse的Struts1实现的登录功能的实例。这个项目,名为...

Global site tag (gtag.js) - Google Analytics