spring+struts2+hibernate整合(ssh)

Posted 程序员提升之路

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring+struts2+hibernate整合(ssh)相关的知识,希望对你有一定的参考价值。

ssh整合

ssh整合需要一步一步的来,首先我们先整合spring和hibernat。

1.整合之前先把关于spring,hibernate,struts2的相关包导入(将其放入lib目录下)


2.首先创建一个用户注册的jsp(插入操作)。

index.jsp

[html] view plain copy

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"  

  2.     pageEncoding="UTF-8"%>  

  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  

  4. <html>  

  5. <head>  

  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  

  7. <title>Insert title here</title>  

  8. </head>  

  9. <body>  

  10.   

  11. <center>  

  12.     <form action="register.action" method="post">  

  13.           

  14.         账号:<input type="text" name="userName"><br>  

  15.         密码:<input type="text" name="pwd"><br>  

  16.             <input type="submit" value="注册">  

  17.       

  18.       

  19.     </form>  

  20. </center>  

  21.   

  22. </body>  

  23. </html>  


3.创建前端控制器web.xml(struts2的前端控制器)

web.xml

[html] view plain copy

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <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">  

  3.   <display-name>ssh</display-name>  

  4.   <welcome-file-list>  

  5.     <welcome-file>index.html</welcome-file>  

  6.     <welcome-file>index.htm</welcome-file>  

  7.     <welcome-file>index.jsp</welcome-file>  

  8.     <welcome-file>default.html</welcome-file>  

  9.     <welcome-file>default.htm</welcome-file>  

  10.     <welcome-file>default.jsp</welcome-file>  

  11.   </welcome-file-list>  

  12.     

  13.   <!-- 读取spring的配置文件 -->  

  14.   <context-param>  

  15.     <param-name>contextConfigLocation</param-name>  

  16.     <param-value>classpath:application-*.xml</param-value>  

  17.   </context-param>  

  18.   <!--设置监听,一访问的时候就开始读取配置文件  -->  

  19.   <listener>  

  20.     <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  

  21.   </listener>  

  22.   <!-- struts2的前端控制器,凡是以.action结尾的文件都要走拦截 -->  

  23.   <filter>  

  24.     <filter-name>struts</filter-name>  

  25.     <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>  

  26.   </filter>  

  27.   <filter-mapping>  

  28.     <filter-name>struts</filter-name>  

  29.     <url-pattern>*.action</url-pattern>  

  30.   </filter-mapping>  

  31. </web-app>  


4.我们上面注册提交的路径是register.action路径他也走了控制器,要在struts2的配置文件中接收这个请求。


4.1配置struts2的配置文件struts.xml(src目录下)

struts.xml

[html] view plain copy

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2.  <!DOCTYPE struts PUBLIC   

  3.     "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"  

  4.     "http://struts.apache.org/dtds/struts-2.0.dtd">  

  5.     <!--  

  6.           

  7.         package:相当于模块,包的概念。  

  8.         namespace:命名空间,相当于springMvc中的注解RequestMapper里面的路径。   

  9.         extends:struts2的配置文件都需要直接或者间接继承struts-default  

  10.             struts-default:是一个xml文件,这个xml文件中配置了很多拦截器、校验等等内容  

  11.             如果不继承struts-default,那struts2的核心内容就使用不了  

  12.       -->  

  13.     <struts>  

  14.         <package name="default" namespace="" extends="struts-default">  

  15.           

  16.         <!--   

  17.             action:前面的请求路径会和action中的name匹配,如果匹配到了那么就走method相对应得方法  

  18.             name:与前台请求的url相对应,不需要写.action  

  19.             method:对应执行方法,  

  20.                 默认值为execute(),如果执行方法是execute(),可以省略method  

  21.          -->  

  22.             <action name="register" class="com.cn.action.UserAction" method="register">   

  23.                     <!--result:返回值,或者返回的页面  

  24.                         里面的属性有:name:执行完method方法后返回的值,如果不写method返回的是success  

  25.                                     type:跳转方式,默认的为转发  

  26.                       

  27.                       -->  

  28.                     <result>success.jsp</result>  

  29.             </action>  

  30.         </package>  

  31.           

  32.     </struts>  



5.建一个action后端控制器相当于springmvc的controller

UserAction.java


[java] view plain copy

  1. package com.cn.action;  

  2.   

  3. import java.util.Date;  

  4.   

  5. import com.cn.pojo.User;  

  6. import com.cn.service.IUserService;  

  7. import com.opensymphony.xwork2.ActionSupport;  

  8.   

  9. public class UserAction extends ActionSupport {  

  10.       

  11.     /** 

  12.      * User对象是pojo包下面的  

  13.      *  

  14.      * hibernate接收前台相应传过来的参数使用全局变量类接收的 

  15.      *  

  16.      * action相当于SpringMVC中的controller层, 

  17.      *  此层需要调用service层的实现,server层则需要调用dao层中的数据。 

  18.      *  

  19.      * IUserService:调用service层。 

  20.      *  

  21.      * 生成getter,setter方法 

  22.      *  

  23.      *  

  24.      */  

  25.       

  26.     private User user;  

  27.       

  28.     private IUserService userServiceImpl;  

  29.       

  30.   

  31.     public String register(){  

  32.           

  33.           

  34.         //设置主键,使用的是时间戳  

  35.         user.setUserId(String.valueOf(new Date().getTime()));  

  36.         System.out.println(user);  

  37.         //调用server层的添加数据的方法  

  38.         String saveUser = userServiceImpl.saveUser(user);  

  39.         System.out.println(saveUser);  

  40.         //返回success,是因为我们继承了ActionSupport方法,此方法中定义的默认值,在struts配置文件中<result>中可以不写name属性  

  41.         return SUCCESS;  

  42.           

  43.     }  

  44.       

  45.       

  46.       

  47.     public User getUser() {  

  48.         return user;  

  49.     }  

  50.   

  51.   

  52.     public void setUser(User user) {  

  53.         this.user = user;  

  54.     }  

  55.   

  56.       

  57.       

  58.   

  59.   

  60.     public IUserService getUserServiceImpl() {  

  61.         return userServiceImpl;  

  62.     }  

  63.   

  64.   

  65.     public void setUserServiceImpl(IUserService userServiceImpl) {  

  66.         this.userServiceImpl = userServiceImpl;  

  67.     }  

  68.       

  69.   

  70. }  


6.定义与数据库对应的pojo类


User.java


[java] view plain copy

  1. package com.cn.pojo;  

  2.   

  3. public class User  {  

  4.   

  5.     private String userId;  

  6.       

  7.     private String pwd;  

  8.       

  9.     private String userName;  

  10.   

  11.     public String getUserId() {  

  12.         return userId;  

  13.     }  

  14.   

  15.     public void setUserId(String userId) {  

  16.         this.userId = userId;  

  17.     }  

  18.   

  19.     public String getPwd() {  

  20.         return pwd;  

  21.     }  

  22.   

  23.     public void setPwd(String pwd) {  

  24.         this.pwd = pwd;  

  25.     }  

  26.   

  27.     public String getUserName() {  

  28.         return userName;  

  29.     }  

  30.   

  31.     public void setUserName(String userName) {  

  32.         this.userName = userName;  

  33.     }  

  34.   

  35.     @Override  

  36.     public String toString() {  

  37.         return "User [userId=" + userId + ", pwd=" + pwd + ", userName=" + userName + "]";  

  38.     }  

  39.   

  40.     public User() {  

  41.         super();  

  42.         // TODO Auto-generated constructor stub  

  43.     }  

  44.   

  45.     public User(String userId, String pwd, String userName) {  

  46.         super();  

  47.         this.userId = userId;  

  48.         this.pwd = pwd;  

  49.         this.userName = userName;  

  50.     }  

  51.       

  52.       

  53.       

  54. }  

注意:本人比较智障了。。。将数据库的主键设置成了varchar类型,由此主键生成策略是不太好用的所以使用了时间戳的方式作为主键。。



7.创建对象与数据库表的映射关系文件

User.hbm.xml


[html] view plain copy

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <!DOCTYPE hibernate-mapping PUBLIC   

  3.     "-//Hibernate/Hibernate Mapping DTD 3.0//EN"  

  4.     "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">  

  5.     <hibernate-mapping>  

  6.     <!-- name:对应的类的包名  

  7.         table:数据库表名  

  8.         id:主键  

  9.             name:对象的属性  

  10.             column:数据库中的列  

  11.             property:其他列和属性  

  12.      -->  

  13.         <class name="com.cn.pojo.User" table="user_2">  

  14.             <id name="userId" column="userId"></id>  

  15.             <property name="pwd" column="pwd"></property>  

  16.             <property name="userName" column="Name"></property>  

  17.         </class>  

  18.       

  19.     </hibernate-mapping>  






8.配置spring的核心配置文件,我们要将hibernate的核心配置文件一起注入到spring中,让spring容器来统一管理。

application-context.xml


[html] view plain copy

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <beans xmlns="http://www.springframework.org/schema/beans"  

  3.  xmlns:context="http://www.springframework.org/schema/context"  

  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

  5.     xmlns:aop="http://www.springframework.org/schema/aop"  

  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans  

  7.         http://www.springframework.org/schema/beans/spring-beans.xsd  

  8.         http://www.springframework.org/schema/aop  

  9.         http://www.springframework.org/schema/aop/spring-aop.xsd  

  10.          http://www.springframework.org/schema/context  

  11.         http://www.springframework.org/schema/context/spring-context.xsd">  

  12.         <!--   

  13.               

  14.             将dao层交给容器管理   

  15.             我们在dao层中需要获取到sessionFactory对象,从而操作数据库,所以要注入一个sessionFactory属性,  

  16.             其应用的就是下面sessionFactory中的内容  

  17.               

  18.         -->  

  19.     <bean id="userDaoImpl" class="com.cn.dao.impl.UserDaoImpl" >  

  20.         <property name="sessionFactory" ref="sessionFactory"> </property>  

  21.       

  22.     </bean>    

  23.       

  24.       

  25.     <!--   

  26.         将Service层交给容器管理  

  27.         与dao层相同,需要引用dao层的数据。  

  28.      -->  

  29.     <bean id="userServiceImpl" class="com.cn.service.impl.UserServiceImpl">  

  30.         <property name="userDaoImpl" ref="userDaoImpl"></property>  

  31.     </bean>  

  32.       

  33.     <!-- 将action交给容器管理   

  34.       

  35.         应用service层的数据  

  36.           

  37.         scope属性:  

  38.                 prototype:每次访问都创建一个对象,默认使用的是单例模式,只创建一个对象  

  39.                     由于Struts2框架本身每次访问就需要创建action对象对象,如果使用默认的单例模式,  

  40.                     肯定会出现报错的问题  

  41.     -->  

  42.     <bean id="userAction" class="com.cn.action.UserAction" scope="prototype">  

  43.         <property name="userServiceImpl" ref="userServiceImpl"></property>  

  44.           

  45.     </bean>  

  46.       

  47.       

  48.     <!--   

  49.         将hibernate交给spring容器管理  

  50.     获取sessionFactory -->  

  51.     <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">  

  52.         <property name="dataSource" ref="dataSource"></property>  

  53.         <!-- hibernate属性注入  

  54.             并通过读取property文件读取其中的属性  

  55.           

  56.          -->  

  57.         <property name="hibernateProperties">  

  58.             <props>  

  59.             <!-- 方言 -->  

  60.             <prop key="hibernate.dialect">${hibernate.dialect}</prop>  

  61.             <!-- 显示sql数据 -->  

  62.             <prop key="hibernate.show_sql">${hibernate.show_sql}</prop>  

  63.             <!-- 格式化显示 -->  

  64.             <prop key="hibernate.format_sql">${hibernate.format_sql}</prop>  

  65.             </props>  

  66.         </property>  

  67.         <!-- 映射文件 -->  

  68.           

  69.         <property name="mappingResources">  

  70.             <array>  

  71.                 <value>com/cn/pojo/User.hbm.xml</value>  

  72.             </array>  

  73.         </property>  

  74.           

  75.     </bean>  

  76.     <!-- 配置数据库数据源 -->  

  77.     <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">  

  78.               

  79.             <property name="driverClassName" value="${hibernate.driver}"></property>  

  80.             <property name="url" value="${hibernate.url}"></property>  

  81.             <property name="username" value="${hibernate.username}"></property>  

  82.             <property name="password" value="${hibernate.password}"></property>  

  83.     </bean>  

  84.       

  85.     <!-- 读取properties配置文件 -->  

  86.     <context:property-placeholder location="classpath:db.properties"/>  

  87.       

  88.       

  89.             

  90. </beans>  


9.property文件(db.property)



[plain] view plain copy

  1. hibernate.driver = oracle.jdbc.driver.OracleDriver  

  2. hibernate.url = jdbc:oracle:thin:@localhost:1521:orcl  

  3. hibernate.username = yao  

  4. hibernate.password = 123456  

  5. hibernate.dialect = org.hibernate.dialect.Oracle10gDialect  

  6. hibernate.show_sql= true  

  7. hibernate.format_sql=true  


10.server层接口和实现


IUserservice.java


[java] view plain copy

  1. package com.cn.service;  

  2.   

  3. import com.cn.pojo.User;  

  4.   

  5. public interface IUserService {  

  6.       

  7.     String saveUser(User user);  

  8.   

  9. }  


UserServiceImpl.java

[java] view plain copy

  1. package com.cn.service.impl;  

  2.   

  3. import com.cn.dao.IUserDao;  

  4. import com.cn.pojo.User;  

  5. import com.cn.service.IUserService;  

  6.   

  7. public class UserServiceImpl implements IUserService{  

  8.   

  9.       

  10.     private IUserDao userDaoImpl;  

  11.       

  12.     @Override  

  13.     public String saveUser(User user) {  

  14.           

  15.         String i = userDaoImpl.saveUser(user);  

  16.           

  17.         return i;  

  18.     }  

  19.   

  20.     public IUserDao getUserDaoImpl() {  

  21.         return userDaoImpl;  

  22.     }  

  23.   

  24.     public void setUserDaoImpl(IUserDao userDaoImpl) {  

  25.         this.userDaoImpl = userDaoImpl;  

  26.     }  

  27.       

  28.       

  29.   

  30. }  


11.dao层接口和实现


IUserDao.java


[java] view plain copy

  1. package com.cn.dao;  

  2. import com.cn.pojo.User;  

  3.   

  4.   

  5. public interface IUserDao {  

  6.   

  7.   

  8.     String saveUser(User user);  

  9.       

  10. }  


UserDaoImpl.java

[java] view plain copy

  1. package com.cn.dao.impl;  

  2.   

  3. import java.io.Serializable;  

  4.   

  5. import org.hibernate.Session;  

  6. import org.hibernate.SessionFactory;  

  7.   

  8. import com.cn.dao.IUserDao;  

  9. import com.cn.pojo.User;  

  10. import com.opensymphony.xwork2.ActionContext;  

  11.   

  12. public class UserDaoImpl implements IUserDao {  

  13.       

  14.     private SessionFactory sessionFactory;  

  15.       

  16.     @Override  

  17.     public String saveUser(User user) {  

  18.         /** 

  19.          * 通过sessionFactory对象获取session对象 

  20.          * 再通过session来操作数据库 

  21.          * getCurrentSession()方法是使用spring中那个session,如果使用openSession()是创建一个新的session对象 

  22.          * 这样提交事务的时候就提交不上去,不是一个session。 

  23.          */  

  24.         Session session = sessionFactory.getCurrentSession();  

  25.         String i =(String) session.save(user);  

  26.           

  27.         return i;  

  28.     }  

  29.   

  30.     public SessionFactory getSessionFactory() {  

  31.         return sessionFactory;  

  32.     }  

  33.   

  34.     public void setSessionFactory(SessionFactory sessionFactory) {  

  35.         this.sessionFactory = sessionFactory;  

  36.     }  

  37.       

  38.   

  39. }  



12.创建事务

application-tx.xml


[html] view plain copy

  1. <?xml version="1.0" encoding="UTF-8"?>  

  2. <beans xmlns="http://www.springframework.org/schema/beans"  

  3.  xmlns:context="http://www.springframework.org/schema/context"  

  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

  5.     xmlns:aop="http://www.springframework.org/schema/aop"  

  6.      xmlns:tx="http://www.springframework.org/schema/tx"  

  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans  

  8.         http://www.springframework.org/schema/beans/spring-beans.xsd  

  9.         http://www.springframework.org/schema/aop  

  10.         http://www.springframework.org/schema/aop/spring-aop.xsd  

  11.          http://www.springframework.org/schema/context  

  12.         http://www.springframework.org/schema/context/spring-context.xsd  

  13.          http://www.springframework.org/schema/tx  

  14.         http://www.springframework.org/schema/tx/spring-tx.xsd">  

  15.           

  16.           

  17.         <bean id="hibernateTx" class="org.springframework.orm.hibernate4.HibernateTransactionManager">  

  18.         <property name="sessionFactory" ref="sessionFactory"></property>  

  19.     </bean>  

  20.           

  21.           

  22.         <!-- 定义通知 -->  

  23. <tx:advice id="txAdvice" transaction-manager="hibernateTx">  

  24.     <tx:attributes>  

  25.         <tx:method name="save*" read-only="false"/>  

  26.         <tx:method name="insert*" read-only="false"/>  

  27.         <tx:method name="updata*" read-only="false"/>  

  28.         <tx:method name="delete*" read-only="true"/>  

  29.     </tx:attributes>  

  30.   

  31. </tx:advice>  

  32.       

  33.     <!--定义切面  -->  

  34.         <aop:config>  

  35.           

  36.             <aop:pointcut expression="execution(* com.cn.service.*.*(..))" id="point"/>  

  37.             <aop:advisor advice-ref="txAdvice" pointcut-ref="point"/>  

  38.         </aop:config>  

  39.  </beans>  


13.创建注册成功的jsp


success.jsp


[html] view plain copy

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"  

  2.     pageEncoding="UTF-8"%>  

  3. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  

  4. <html>  

  5. <head>  

  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  

  7. <title>Insert title here</title>  

  8. </head>  

  9. <body>      

  10. <center>  

  11.     <h1>  

  12.         注册成功  

  13.     </h1>  

  14. </center>  

  15.   

  16. </body>  

  17. </html>  


14测试


http://localhost:8080/ssh/index.jsp

spring+struts2+hibernate整合(ssh)

这是项目目录结构


以上是关于spring+struts2+hibernate整合(ssh)的主要内容,如果未能解决你的问题,请参考以下文章

createSQLQuery is not valid without active transaction解决方法

spring 学习之三(spring 与hibernate, struts2整合)

Struts2 + Spring + Hibernate 分页

Struts2+Spring+Hibernate(SSH)框架的搭建

struts2集成Spring,Hibernate的问题!!

Spring:Spring整合Hibernate,之后整合Struts2