前幾天向大家介紹了一種用工具類生成資料表的方法,不過之前的方法需要使用一個跟專案關係不大的工具類。不免讓人覺得有些多餘,所以呢,今天再向大家介紹一種方法。即Hibernate與Spring配合生成表結構。
首先,要將Spring的資訊配置的web.xml,配置Spring用於初始化容器物件的監聽器。
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" 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_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>oa_01</display-name> <!-- 配置Spring用於初始化容器物件的監聽器 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext*.xml</param-value> </context-param> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </web-app>
然後,將Hibernate的資訊配置到Spring的配置檔案中,將Hibernate交由Spring來管理。
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <!-- 自動掃描與裝配bean --> <context:component-scan base-package="com.tgb.oa"></context:component-scan> <!-- 匯入外部的properties檔案 --> <context:property-placeholder location="classpath:jdbc.properties"/> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <!-- 指定hibernate配置檔案的位置 --> <property name="configLocation" value="classpath:hibernate.cfg.xml"></property> <!-- 配置c3p0資料庫連線池 --> <property name="dataSource"> <bean class="com.mchange.v2.c3p0.ComboPooledDataSource"> <!-- 資料連線資訊 --> <property name="jdbcUrl" value="jdbc:mysql://127.0.0.1:3307/myoa"></property> <property name="driverClass" value="com.mysql.jdbc.Driver"></property> <property name="user" value="root"></property> <property name="password" value="123456"></property> <!-- 初始化時獲取三個連線(取值應在minPoolSize與maxPoolSize之間。預設值: 3) --> <property name="initialPoolSize" value="3"></property> <!-- 連線池中保留的最小連線數,預設值:3 --> <property name="minPoolSize" value="3"></property> <!-- 連線池中保留的最大連線數,預設值:15 --> <property name="maxPoolSize" value="5"></property> <!-- 當連線池中的連線數耗盡的時候,c3p0一次同時獲取的連線數,預設值:3 --> <property name="acquireIncrement" value="3"></property> <!-- 控制資料來源內載入的PreparedStatements數量。如果maxStatements與maxStatementsPerConnection均為0,則快取被關閉。Default: 0 --> <property name="maxStatements" value="8"></property> <!--maxStatementsPerConnection定義了連線池內單個連線所擁有的最大快取statements數。Default: 0 --> <property name="maxStatementsPerConnection" value="5"></property> <!--最大空閒時間,1800秒內未使用則連線被丟棄。若為0則永不丟棄。Default: 0 --> <property name="maxIdleTime" value="1800"></property> </bean> </property> </bean> </beans>
這裡我將資料庫連線資訊以及連線池都配置到了Spring中,當然你也可以將資料庫連線資訊寫到Hibernate的配置檔案裡,Hibernate會有自己預設的連線池配置,但是它沒有Spring的好用。具體寫到哪看你需要吧。
接下來就是Hibernate的配置了,裡面包括資料庫方言、是否顯示sql語句、更新方式以及實體對映檔案。當然也可按上面說的將資料庫連線資訊寫到裡面。
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="dialect"> org.hibernate.dialect.MySQL5InnoDBDialect </property> <property name="show_sql">true</property> <property name="hbm2ddl.auto">update</property> <mapping resource="com/tgb/oa/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://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd"> <hibernate-mapping package="com.tgb.oa.domain"> <class name="User" table="T_User"> <id name="id"> <generator class="native"/> </id> <property name="name" /> </class> </hibernate-mapping>
實體類
User.java
package com.tgb.oa.domain; public class User { private String name; private Long id; public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } }
當tomcat啟動的時候,會先找到web.xml,然後根據web.xml的配置,會找到spring中的applicationContext.xml的配置檔案,在applicationContext.xml中有相應的SessionFactory的配置,裡面有Hibernate的相關資訊,接著就會找到Hibernate-cfg.xml,讀取該檔案,並找到實體對映檔案User.hbm.xml,最後根據User.hbm.xml的配置對映成相應的表結構。
Tomcat啟動以後,表結構也跟著生成了,生成表結構後的效果:
兩種生成表結構的方式其實也沒有哪種好,哪種不好之說。用工具類生成的方式不需要Spring的參與,但是需要一個工具類來支援;與Spring配合的方式不需要多餘的東西,但是需要與Spring配合才能用。如果你只需要Hibernate那就用第一種,如果正好是配合Spring來使用那毫無疑問就用第二種。具體看情況吧。