當前位置:首頁 » struts2教學 » Struts2數據庫訪問

Struts2+MySQL數據庫

Struts2數據庫訪問(Struts2+MySQL數據庫)實例代碼, Struts2登陸實例代碼和教學。

本章將教你如何使用Struts2的簡單的步驟來訪問數據庫。 Struts是一個MVC框架,而不是一個數據庫框架,但它提供了極好的支持JPA/Hibernate的集成。我們將在後麵的章節看Hibernate的集成,但在本章中,我們將使用簡單的老的JDBC來訪問數據庫。

在本章的第一步是設置和總理的數據庫。在這個例子中我的數據庫使用的是MySQL。我的機器上安裝了MySQL,創建了一個新的數據庫稱為“struts_tutorial”。我已經創建了一個表,稱為login,並填充了一些值。下麵是我用來創建和填充表的腳本。

我的MySQL數據庫的默認用戶名“root”和“root123密碼”

CREATE TABLE `struts_tutorial`.`login` (
   `user` VARCHAR( 10 ) NOT NULL ,
   `password` VARCHAR( 10 ) NOT NULL ,
   `name` VARCHAR( 20 ) NOT NULL ,
   PRIMARY KEY ( `user` )
) ENGINE = InnoDB;

INSERT INTO `struts_tutorial`.`login` (`user`, `password`, `name`)
 VALUES ('scott', 'navy', 'Scott Burgemott');

接下來的步驟是,下載MySQL Connector jar文件(數據驅動程序),並把這個文件放在項目WEB-INF\lib文件夾下。

之後,我們已經這樣做了,我們現在已經準備好創建的Action類。

創建動作-Action:

Action類的屬性對應的數據庫表中的列。用戶名,密碼和名稱為String attribues。在操作方法上,我們用用戶名和密碼參數,以檢查該用戶是否存在,如果是這樣,我們在下一個畫麵中顯示的用戶名。

如果用戶輸入了錯誤的信息,我們送他們到登錄屏幕。以下是LoginAction.java文件的內容:

package com.tutorialspoint.struts2;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport {

   private String user;
   private String password;
   private String name;

   public String execute() {
      String ret = ERROR;
      Connection conn = null;

      try {
         String URL = "jdbc:mysql://localhost/struts_tutorial";
         Class.forName("com.mysql.jdbc.Driver");
         conn = DriverManager.getConnection(URL, "root", "root123");
         String sql = "SELECT name FROM login WHERE";
         sql+=" user = ? AND password = ?";
         PreparedStatement ps = conn.prepareStatement(sql);
         ps.setString(1, user);
         ps.setString(2, password);
         ResultSet rs = ps.executeQuery();

         while (rs.next()) {
            name = rs.getString(1);
            ret = SUCCESS;
         }
      } catch (Exception e) {
         ret = ERROR;
      } finally {
         if (conn != null) {
            try {
               conn.close();
            } catch (Exception e) {
            }
         }
      }
      return ret;
   }

   public String getUser() {
      return user;
   }

   public void setUser(String user) {
      this.user = user;
   }

   public String getPassword() {
      return password;
   }

   public void setPassword(String password) {
      this.password = password;
   }

   public String getName() {
      return name;
   }

   public void setName(String name) {
      this.name = name;
   }
}

創建主頁麵:

現在,讓我們創建一個JSP文件index.jsp以收集用戶名和密碼。將檢查該用戶名和密碼對數據庫。

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Login - www.gitbook.net</title>
</head>
<body>
   <form action="loginaction" method="post">
      User:<br/><input type="text" name="user"/><br/>
      Password:<br/><input type="password" name="password"/><br/>
      <input type="submit" value="Login"/>		
   </form>
</body>
</html>

創建視圖:

現在,讓我們一起創建success.jsp文件,該文件將被調用的情況下動作回報成功,但返回的動作,我們將有另一種觀點認為文件中的錯誤的情況下。

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Successful Login</title>
</head>
<body>
   Hello World, <s:property value="name"/>
</body>
</html>

Following will be the view file error.jsp in case of an ERROR is returned from the action.

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Invalid User Name or Password</title>
</head>
<body>
   Wrong user name or password provided.
</body>
</html>

配置文件:

最後,讓我們把一切融合在一起使用struts.xml中的配置文件如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
   <constant name="struts.devMode" value="true" />
   <package name="helloworld" extends="struts-default">
   
      <action name="loginaction" 
         class="com.tutorialspoint.struts2.LoginAction"
         method="execute">
         <result name="success">/success.jsp</result>
         <result name="error">/error.jsp</result>
      </action>
   
   </package>

</struts>

Following is the content of web.xml file:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns="http://java.sun.com/xml/ns/javaee" 
   xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
   xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
   http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
   id="WebApp_ID" version="3.0">
   
   <display-name>Struts 2</display-name>
   <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
   </welcome-file-list>
   <filter>
      <filter-name>struts2</filter-name>
      <filter-class>
         org.apache.struts2.dispatcher.FilterDispatcher
      </filter-class>
   </filter>

   <filter-mapping>
      <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
   </filter-mapping>
</web-app>

現在,右鍵點擊項目名稱,並單擊“導出”> WAR文件創建一個WAR文件。然後,這WAR部署在Tomcat的webapps目錄下。最後,啟動Tomcat服務器,並嘗試訪問URL http://localhost:8080/HelloWorldStruts2/index.jsp。這會給你以下畫麵:

輸入錯誤的用戶名和密碼。您應該看到頁麵如下:

現在用戶名為:scott 和密碼為:navy。您應該看到的頁麵如下:


end over