logonAction.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. package strutsds;
  2. import java.io.IOException;
  3. import javax.servlet.ServletContext;
  4. import javax.servlet.ServletException;
  5. import javax.servlet.http.HttpServletRequest;
  6. import javax.servlet.http.HttpServletResponse;
  7. import javax.servlet.http.HttpSession;
  8. import org.apache.struts.action.Action;
  9. import org.apache.struts.action.ActionForm;
  10. import org.apache.struts.action.ActionForward;
  11. import org.apache.struts.action.ActionMapping;
  12. import org.apache.struts.action.ActionErrors;
  13. import org.apache.struts.action.ActionError;
  14. import javax.sql.DataSource;
  15. import java.sql.Connection;
  16. import java.sql.Statement;
  17. import java.sql.ResultSet;
  18. import java.sql.SQLException;
  19. public class logonAction extends Action {
  20. java.util.ArrayList list=new java.util.ArrayList();
  21. protected String getUser(String username, String password) {
  22. String user = null;
  23. Connection conn = null;
  24. Statement stmt = null;
  25. ResultSet rs = null;
  26. ServletContext context = servlet.getServletContext();
  27. DataSource dataSource = (DataSource)context.getAttribute(Action.DATA_SOURCE_KEY);
  28. try {
  29. conn = dataSource.getConnection();
  30. stmt = conn.createStatement();
  31. rs =stmt.executeQuery("select * from employees where "+ "username='" + username + "' "+ "and password='" + password + "'");
  32. if ( rs.next() ) {
  33.         user = rs.getString("username");
  34. // Iterate over the results
  35.         System.err.println("Username : "+ rs.getString("username")+ " Password : " + rs.getString("password"));
  36. }
  37. else {
  38. System.err.println("....>User not found<....");
  39. }
  40. }
  41. catch (SQLException e) {
  42. System.err.println(e.getMessage());
  43. }
  44. finally {
  45. if (rs != null) {
  46. try {
  47. rs.close();
  48. }
  49. catch (SQLException sqle) {
  50. System.err.println(sqle.getMessage());
  51. }
  52. rs = null;
  53. }
  54. if (stmt != null) {
  55. try {
  56. stmt.close();
  57. }
  58. catch (SQLException sqle) {
  59. System.err.println(sqle.getMessage());
  60. }
  61. stmt = null;
  62. }
  63. if (conn != null) {
  64. try {
  65. conn.close();
  66. }
  67. catch (SQLException sqle) {
  68. System.err.println(sqle.getMessage());
  69. }
  70. conn = null;
  71. }
  72. }
  73. return user;
  74. }
  75.   public ActionForward perform(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse httpServletResponse) {
  76.   String user = null;
  77. // Default target to success
  78.  String target = "success";
  79. // Use the LoginForm to get the request parameters
  80.  String username = ((logonActionForm)form).getUsername();
  81.  String password = ((logonActionForm)form).getPassword();
  82.  user = getUser(username, password);
  83. // Set the target to failure
  84.  if ( user == null ) {
  85.  target = "login";
  86.  ActionErrors errors = new ActionErrors();
  87.  errors.add(ActionErrors.GLOBAL_ERROR,
  88.  new ActionError("errors.login.unknown",username));
  89. // Report any errors we have discovered back to the
  90. // original form
  91.  if (!errors.empty()) {
  92.  saveErrors(request, errors);
  93.  }
  94.  }
  95.  else {
  96.  HttpSession session = request.getSession();
  97.  session.setAttribute("USER", user);
  98.  }
  99. // Forward to the appropriate View
  100.  return (mapping.findForward(target));
  101.  }
  102. }