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