快速业务通道

高效率创建安全的Java应用, 第1部分 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-13
import="com.ibm.ds.users.Users" %> <%@page import="pureQuery.example.*" %> <%@page import="com.ibm.pdq.runtime.*" %> <html> <head> <title>login</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta name="GENERATOR" content="Rational Application Developer"> </head> <body> <h1>Login</h1> <!-- database connection will be made using URL:     jdbc:db2://localhost:50000/WEALTH     on users table. Success takes the user to the welcome page. --> <%    String userid = request.getParameter("userid");    String password = request.getParameter("password");    if((userid != null && !userid.equals("")) &&      (password != null && !password.equals(""))){      Data d = SampleUtil.getData("jdbc:db2://localhost:50000/WEALTH",           "<enter_your_username>", "<enter_your_password>");      users.setData(d);      Users u = users.getUsers(userid);      if(u != null && u.getPassword().equals(password)){        session.setAttribute("userid", userid);        response.sendRedirect("welcome.jsp");      }      else{        out.println("Error logging in.<br/><br/>");      }    }    else if(request.getParameter("login") != null)      out.println("You must enter a userid and password.<br/><br/>"); %> <form method="post">    userid: <input name="userid"/><br/>    Password: <input name="password" type="password"/><br/>    <input type="submit" name="login" value="Login"/> </form> </body> </html>

注意第二行的 <jsp:useBean 标签 /> 。 这里您的 JSP 页面使用了预先定义的 UsersDataImpl 类。 注意在 JSP 内是怎样使用 lt;% %> 标签进行编码的。 接下来的是三个重要的导入声明, 接着是 <body>...</body> 标签体内的编码。

首先注意有 userid 和 password 输入域和一个提交按钮的表单,当表单被提交, 您会得到域的值并检查它们的有效性。然后使用 pureQuery 用应类 (pureQuery.example.SampleUtil)连接数据库。接下来您要设置 users 变量的数值(包括数据库连接) (javaBean在面页的前面声明)。您现在可以通过 pureQuery 类查询数据库。

您所运行的第一个查询是使用 pureQuery 代码从数据库中查找匹配用户名的记录。如果返回了匹配的用户密码,您须要向会话变量中设置 userid ,并重定向到 welcome.jsp 页面。如果认证失败, 您要输出失败信息,如用户id或密码错误等提示。

高效率创建安全的Java应用, 第1部分(14)

时间:2012-01-14 IBM Tyler Anderson

查看登陆页面。

图 31. 登陆页面

成功登陆后, 您会被重定向到 welcome.jsp 页面, 您现在须要定义这部分内容。

欢迎页面

欢迎页

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站: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号