1. 程式人生 > >簡單的實現Web登入(struts2+Hibernate)

簡單的實現Web登入(struts2+Hibernate)

首先匯入struts+Hibernate 的jar包

 配置web.xml

<?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" 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>struts2_002</display-name>
  <welcome-file-list>
    <welcome-file>/WEB-INF/jsp/user/login.jsp</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  <filter>
	<filter-name>struts2</filter-name>
	<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
	<filter-name>struts2</filter-name>
	<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>

配置struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<!-- package name="student"和java的包一樣,命名唯一,將要執行的類同一進行管理 ,可以有多個包 -->
	
	<!-- namespace="/"代表名稱空間為根空間;名稱空間就是我們在發起一個請求的時候輸入的地址
	比如:http://localhost:8080/web_Struts2/user.action;如果是"/"為根空間;
	如果為http://localhost:8080/web_Struts2/隨意一個名字/user.action;
	那麼namespace="隨意一個名字"
	 -->
	
	<!-- ction name="user" user和servlet類似有一個名稱,用於呼叫時候輸入地址;字尾預設為.action!! 且字尾名任意更改在struts.properties文件中可任意更改名字 -->
	<!-- class="com.ygr.struts.action.UserAction"所在的包地址,和在xml文件中配置servlet一樣 -->
	<!-- method="add" 這裡如果不寫,預設執行的方法就是execute();如果寫了就是執行所寫的方法,這裡就是執行add方法 -->
	<!-- result name="success" 這裡和對應的java,action類呼叫的方法相對應-->

<constant name="struts.action.excludePattern" value="/static/.*?" /><!-- 對靜態資源的放行 /static 代表靜態資源的存放路徑 -->
      <package name="default" namespace="/" extends="struts-default">
      <action name="LoginAction" class="com.dream.action.LoginAction" method="execute">
            <result name="success">/WEB-INF/jsp/user/home.jsp</result>
            <result name="error">/WEB-INF/jsp/user/error.jsp</result>
      </action>
    </package>
</struts>

配置hibernate.cfg.xml

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

    <session-factory>

        <!-- 資料庫連線配置 -->
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost:3306/test</property>
        <property name="connection.username">root</property>
        <property name="connection.password">123456</property>
        <!-- 資料庫連線池的大小 -->
        <property name="connection.pool_size">5</property>
        <!-- 每次從資料庫中取出並放到JDBC的Statement中的記錄條數。Fetch Size設的越大,讀資料庫的次數越少,速度越快,Fetch Size越小,讀資料庫的次數越多,速度越慢-->
        <property name="jdbc.fetch_size">50 </property>
        <!--批量插入,刪除和更新時每次操作的記錄數。Batch Size越大,批量操作的向資料庫傳送Sql的次數越少,速度就越快,同樣耗用記憶體就越大-->
        <property name="jdbc.batch_size">23 </property>
        <!-- SQL 方言 -->
        <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>
        <!-- 在控制檯輸出sql語句 -->
        <property name="show_sql">true</property>
        <!-- 在啟動時根據配置更新資料庫 -->
        <property name="hbm2ddl.auto">update</property>
        <!--指定對映檔案為“hibernate/ch1/UserInfo.hbm.xml”-->
        <mapping resource="com/test/domain/User.hbm.xml"/>

    </session-factory>

</hibernate-configuration>

配置 User.hbm.xml  這個對映檔案要放到對應的對映類的包下

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="com.test.domain">
    <!-- 1 配置類和表對應   
        class標籤  
        name屬性:實體類全路徑  
        table屬性:資料庫表名稱  
    -->
    <class name="User" table="user">
        <!-- 2 配置“主鍵”的對映
            id標籤
            name屬性:實體類裡面id屬性名稱
            column屬性:生成的表字段名稱
            type屬性:該欄位的資料型別
        -->
        <id name="id" column="id" type="java.lang.Integer">
            <!-- 設定主鍵的增長方法
                increment(遞增)
                identity (標識)
                sequence (序列)
                hilo (高低位)
                seqhilo(使用序列的高低位)
                native(本地)
            -->
            <generator class="increment"></generator>
        </id>
        <!-- 配置其他屬性和表字段對應
            name屬性:實體類屬性名稱
            column屬性:生成表字段名稱
            type屬性:該欄位的資料型別
        -->
        <property name="username" column="name"></property>
        <property name="password" column="password"></property>
        <property name="date"     column="date"></property>
    </class>
</hibernate-mapping>

UserData.java  使用者資料的提取類與hbm.xml放在同一個包下

package com.dream.data;

import java.util.Date;

public class UserData {
	private Integer id;
	private String password;
	private String username;
    private Date   date;
	
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public Integer getId() {
		return id;
	}
	public void setId(Integer id) {
		this.id = id;
	}
	public Date getDate() {
		return date;
	}
	public void setDate(Date date) {
		this.date = date;
	}
}

UserDao.java 從資料庫提取資料進行比對的類

package com.dream.dao;

import org.hibernate.Query;
import org.hibernate.Session;


public class UserDao {
       public boolean login(String username,String possword) {//查詢使用者是否存在
    	   Session session=new HibernateUtls().getSession();
    	   Query query=session.createQuery("from UserData u where u.username=? and u.password=?");
    	   query.setParameter(0, username);
    	   query.setParameter(1, possword);
    	   return query.list().isEmpty()?false:true;
       }
}

HibernateUtls.java開啟資料庫會回話返回session

package com.dream.dao;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.ServiceRegistryBuilder;

public class HibernateUtls {
	public Session getSession() {
		Configuration cfg=null;
		SessionFactory sf=null;
		Session session=null;
		try {
			cfg=new Configuration().configure();
			ServiceRegistry registry=new ServiceRegistryBuilder()
					.applySettings(cfg.getProperties())
					.buildServiceRegistry();
			sf=cfg.buildSessionFactory(registry);
			session=sf.openSession();
		}catch(Exception e){
			e.printStackTrace();
		}
		return session;
	}
	public void closeSession(Session session)
	{
		if(session!=null&&session.isOpen()){
			session.close();
		}
	}
}

資料庫的建立: