spring使用的版本是spring-4.2.5,struts2使用的版本是struts-2.3.24.1,hibernate使用的版本是hibernate-5.1.0。
一、首先建立數據庫表(使用的是mysql,表以下圖所示)
二、建立Web Project,名爲ssh。
三、加載須要的jar包。
spring(初學者,將全部的release的jar都導進去):
hibernate(添加了required文件夾中全部的jar包):html
struts2(其中包括了spring和struts2的支持包):
java
四、修改web.xml。配置struts和spring。內容以下所示:mysql
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class> </filter> <!-- struts過濾全部的請求 --> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- spring監聽器 --> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class > </listener> <context-param> <param-name>contextConfigLocation</param-name> <!-- 注意路徑的問題 --> <param-value> /WEB-INF/classes/applicationContext.xml </param-value> </context-param> </web-app>
五、在src目錄下建立hibernate.cfg.xml,用於鏈接數據庫。web
<hibernate-configuration> <session-factory> <!-- 須要操做的數據庫的配置 --> <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property> <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/book</property> <property name="hibernate.connection.username">root</property> <property name="hibernate.connection.password">sll</property> <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> <!-- 是否在控制檯輸出操做的sql語句 --> <property name="hibernate.show_sql">true</property> </session-factory> </hibernate-configuration>
六、建立User.hbm.xml,我放置的目錄是sll/hibernate/model。User.hbm.xml與數據庫中的user表對應。spring
<?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"> <!-- User.hbm.xml的做用簡而言之就是對實體和數據庫中的表相呼應 --> <hibernate-mapping package="sll.action"> <class name="LoginAction" table="user"> <!-- 屬性與字段一一對應 --> <id name="name"></id> <property name="password"></property> </class> </hibernate-mapping>
七、在src目錄下新建applicationContext.xml文件。在applicationContext.xml中添加sessionFactory的bean。而且配置好hibernate.cfg.xml和User.hbm.xml的信息。 在這裏,添加了id爲loginAction的bean,對應的類是sll.action.LoginAction。(這個類的具體內容會在後面給出)sql
<?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:mvc="http://www.springframework.org/schema/mvc" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"> <!-- sessionFactory --> <bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean"> <property name="configLocation" value="classpath:hibernate.cfg.xml"> </property> <property name="mappingResources"> <list> <value>sll/hibernate/model/User.hbm.xml</value> </list> </property> </bean> <bean id="loginAction" class="sll.action.LoginAction"> <property name="sessionFactory"> <ref bean="sessionFactory"/> </property> </bean> </beans>
八、在src目錄下建立struts.xml。struts配置Action的信息。Action接收來自視圖層的請求,並接收請求參數,同時負責調用模型方法來完成業務邏輯的處理,最後控制程序的邏輯,選擇一個合適的視圖將結果顯示給客戶。 由於以前在applicationContext.xml中已經定義了id爲loginAction的bean,在這裏咱們定義一個action,名爲login,class爲在applicationContext中定義的bean:loginAction。數據庫
<?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="default" extends="struts-default" > <action name="login" class="loginAction"> <result name="success">/login_success.jsp</result> <result name="error">/login_error.jsp</result> </action> </package> </struts>
九、在src目錄下新建struts.propertiesapache
struts.objectFactory=spring
十、LoginAction.java(事實上,應該將控制、業務、模型層分開,可是出於簡單考慮,主要目的是使用ssh框架,因此將內容全都寫在LoginAction.java中)spring-mvc
public class LoginAction { private static final long serialVersionUID = 4833662754330237479L; private String name; private String password; private SessionFactory sessionFactory; public String execute(){ Session session = sessionFactory.openSession(); //查詢語句from後面接的不是表名稱,而是applicationContext.xml中定義的javabean數據對象名。 String hql = "from LoginAction where name=? and password=?"; Query q = session.createQuery(hql); //值得注意的是,頁面中的name要與屬性一一對應,不然沒法獲得對應的屬性值 q.setParameter(0, name); q.setParameter(1, password); List user = q.list(); session.close(); if (user.size() > 0) { return "success"; } else { return "error"; } } public SessionFactory getSessionFactory() { return sessionFactory; } public void setSessionFactory(SessionFactory sessionFactory) { this.sessionFactory = sessionFactory; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }
十一、login.jspsession
<html> <body> <form action="login.action" method="post"> 用戶登陸<br> 姓名:<input type="text" name="name"/><br> 密碼:<input type="text" name="password"/><br> <input type="submit" value="登陸"/> </form> </body> </html>
十二、login_success.jsp
<html> <body> <h2>您好! 用戶<s:property value="username"/>歡迎您登陸成功 </h2> </body> </html>
1三、login_error.jsp
<html> <body> <h2>登陸失敗</h2> </body> </html>