IntelliJ IDEA 搭建SSH框架詳細步驟
阿新 • • 發佈:2019-01-28
話不多說,直接切入正題!
1、點選File,新建一個Module
2、點選選擇Spring,然後依次勾選右邊的Spring(勾選Spring時,下面會提示是否建立spring-config.xml,這裡我們為了方便起見,勾選上),Web Application,Struts2
接下來下拉,選擇Hibernate(Hibernate要和Spring整合一起,所以不用勾選配置檔案)
3、接下來就是一路next,自己輸入專案名稱,最後Finish。Finish之後可能要等幾分鐘,Idea會自動幫你下載所需要的核心jar包。下圖是最初的專案結構:
4、然後進行資料庫的配置,Idea右側點選Database,然後點選綠色的加號,選擇Data Source,選擇資料庫(博主用的是MySQL)
5、在web.xml中進行如下配置
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version ="3.1">
<!-- Spring框架核心監聽器配置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-config.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class >
</listener>
<!-- Struts2框架核心過濾器配置 -->
<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>
6、在src目錄下,新建jdbc.properties配置檔案,內容如下(按照自己的資料庫配置)
jdbc.driverClass = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://localhost:3306/yourdatabasename
jdbc.username = yourusername
jdbc.password = yourpassword
7、配置spring-config.xml,Spring整合Hibernate
<!-- 引入外部的屬性檔案 -->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 配置c3p0連線池 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="${jdbc.driverClass}"/>
<property name="jdbcUrl" value="${jdbc.url}"/>
<property name="user" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>
<!-- 配置Hibernate相關屬性 -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<!-- 注入連線池 -->
<property name="dataSource" ref="dataSource"/>
<!-- 配置Hibernate的屬性 -->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<!-- 載入Hibernate中的對映檔案 -->
<property name="mappingResources">
<list>
<value></value>
</list>
</property>
</bean>