快速业务通道

Struts 2.0整合Hibernate 3.2开发注册登录系统 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15
Color(Color.black); 47    g.setFont(new Font("Atlantic Inline",Font.PLAIN,18)); 48    String str = strEnsure.substring(0,1); 49     g.drawString(str,8,17);   50    str = strEnsure.substring(1,2); 51     g.drawString(str,20,15); 52    str = strEnsure.substring(2,3); 53     g.drawString(str,35,18);     54    str = strEnsure.substring(3,4); 55     g.drawString(str,45,15); 56    // 随机产生10个干扰点 57    Random rand = new Random(); 58    for (int i=0;i<10;i++) { 59      int x = rand.nextInt (width); 60      int y = rand.nextInt(height); 61      g.drawOval (x,y,1,1); 62    } 63    // 释放图形上下文 64    g.dispose();     65    try { 66      // 输出图象到页面 67      ImageIO.write(image, "JPEG", os); 68    } catch (IOException e) { 69      return ""; 70     } 71    return strEnsure; 72  } 73} 74

Struts 2.0整合Hibernate 3.2开发注册登录系统(8)

时间:2011-09-14 心梦帆影

9、此时,我们很有必要来配置一下struts.xml其全部代码如下:

1<?xml version="1.0" encoding="UTF-8" ?> 2<!DOCTYPE struts PUBLIC 3     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" 4     "http://struts.apache.org/dtds/struts-2.0.dtd"> 5 6<struts> 7 8   <package name="com.rong.action" extends="struts-default"> 9    <!-- 用户登录 --> 10    <action name="loginAction" class="com.rong.action.LoginAction"> 11      <result name="success" type="redirect">/back/index.jsp</result> 12      <result name="input">/login.jsp</result> 13    </action> 14    <!-- 用户注册 --> 15    <action name="registerAction" class="com.rong.action.RegisterAction"> 16      <result name="success" type="redirect">/login.jsp</result> 17      <result name="input">/register.jsp</result> 18    </action> 19   </package> 20</struts>

10、Action层设计:两个非常关键的类,其中LoginAction.java的代码如下:

1package com.rong.action; 2 3import java.util.Map; 4import com.opensymphony.xwork2.ActionContext; 5import com.opensymphony.xwork2.ActionSupport; 6import com.rong.DAO.UserDao; 7import com.rong.DAO.UserDaoImpl; 8import com.rong.ORM.User; 9 10public class LoginAction extends ActionSupport { 11   12   13  private UserDao userDao = new UserDaoImpl();  //操纵数据库DAO类(Hibernate实现),通过Struts.xml注入值 14   15   private int id; 16  private String name;  //用户名(值由struts注入) 17  private String pwd;    //密码(值由struts注入) 18   19  private String inputCertCode;   //验证码 20 21  public int getId() { 22    return id; 23  } 24   public void setId(int id) { 25    this.id = i

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号