整体结构:

1.引入相关jar包

2.编写实体类和映射文件

package cn.zqr.domain;public class Customer {private Long cust_id;private String cust_name;private Long cust_user_id;private Long cust_create_id;private String cust_source;private String cust_industry;private String cust_level;private String cust_linkman;private String cust_phone;private String cust_mobile;public Long getCust_id() {return cust_id;}public void setCust_id(Long cust_id) {this.cust_id = cust_id;}public String getCust_name() {return cust_name;}public void setCust_name(String cust_name) {this.cust_name = cust_name;}public Long getCust_user_id() {return cust_user_id;}public void setCust_user_id(Long cust_user_id) {this.cust_user_id = cust_user_id;}public Long getCust_create_id() {return cust_create_id;}public void setCust_create_id(Long cust_create_id) {this.cust_create_id = cust_create_id;}public String getCust_source() {return cust_source;}public void setCust_source(String cust_source) {this.cust_source = cust_source;}public String getCust_industry() {return cust_industry;}public void setCust_industry(String cust_industry) {this.cust_industry = cust_industry;}public String getCust_level() {return cust_level;}public void setCust_level(String cust_level) {this.cust_level = cust_level;}public String getCust_linkman() {return cust_linkman;}public void setCust_linkman(String cust_linkman) {this.cust_linkman = cust_linkman;}public String getCust_phone() {return cust_phone;}public void setCust_phone(String cust_phone) {this.cust_phone = cust_phone;}public String getCust_mobile() {return cust_mobile;}public void setCust_mobile(String cust_mobile) {this.cust_mobile = cust_mobile;}@Overridepublic String toString() {return "Customer [cust_id=" + cust_id + ", cust_name=" + cust_name + ", cust_user_id=" + cust_user_id+ ", cust_create_id=" + cust_create_id + ", cust_source=" + cust_source + ", cust_industry="+ cust_industry + ", cust_level=" + cust_level + ", cust_linkman=" + cust_linkman + ", cust_phone="+ cust_phone + ", cust_mobile=" + cust_mobile + "]";}}

Customer 实体类

<?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><class name="cn.zqr.domain.Customer" table="cst_customer"><id name="cust_id" column="cust_id"><generator class="native"/></id><property name="cust_name" column="cust_name"/><property name="cust_user_id" column="cust_user_id"/><property name="cust_create_id" column="cust_create_id"/><property name="cust_source" column="cust_source"/><property name="cust_industry" column="cust_industry"/><property name="cust_level" column="cust_level"/><property name="cust_linkman" column="cust_linkman"/><property name="cust_phone" column="cust_phone"/><property name="cust_mobile" column="cust_mobile"/></class></hibernate-mapping>    

实体类映射文件

3.配置struts核心过滤器,和Spring文件加载的监听器

<?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整合web的监听器--><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><!--配置struts的过滤器--><filter><filter-name>struts</filter-name><filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class></filter><filter-mapping><filter-name>struts</filter-name><url-pattern>/*</url-pattern></filter-mapping>
</web-app>

struts核心过滤器的配置和Spring文件加载监听器

4.编写Action并配置,采用模型驱动的方式对表单进行封装,采用Spring注入的方式获取serice实例,并配置Action

/*** 客户的控制层*/
public class CustomerAction extends ActionSupport implements ModelDriven{private CustomerService customerService;public void setCustomerService(CustomerService customerService) {this.customerService = customerService;}//必须手动newprivate Customer customer=new Customer();//模型和属性驱动/*** 保存客户* @return*/public String add(){customerService.save(customer);return NONE;}@Overridepublic Object getModel() {return customer;}
}

Action

  <!--配置service--><bean id="customerService" class="cn.zqr.service.impl.CustomerServiceImpl"><property name="customerDao" ref="customerDao"/></bean>

使用Spring管理Action

  <!--配置Action必须多例--><bean id="customerAction" class="cn.zqr.action.CustomerAction" scope="prototype"><property name="customerService" ref="customerService"/></bean>

Spring配置文件中配置Action

在struts中引入Action

<?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="crm" namespace="/" extends="struts-default"><!--Action由Spring管理,class值为Spring的id--><action name="customer_*" class="customerAction" method="{1}"></action></package></struts>

struts.xml中引入Action

5.配置service

service层代码:

/*** 客户业务层*/
@Transactional
public class CustomerServiceImpl implements CustomerService {private CustomerDao customerDao;public void setCustomerDao(CustomerDao customerDao) {this.customerDao = customerDao;}/*** 保存客户信息* @param customer*/@Overridepublic void save(Customer customer) {customerDao.add(customer);}
}

Service层代码

 

service需要开事务,在Spring中配置事务,开启事务需要使用session,所以首先配置SessionFactory,创建session工厂需要数据源,所以需要优先配置数据源

 <!--配置连接池--><bean class="com.mchange.v2.c3p0.ComboPooledDataSource" id="dataSource"><property name="driverClass" value="com.mysql.jdbc.Driver"/><property name="jdbcUrl" value="jdbc:mysql:///ssh"/><property name="user" value="root"/><property name="password" value="admin"/></bean>

配置数据源C3P0

   <bean class="org.springframework.orm.hibernate5.LocalSessionFactoryBean" id="sessionFactory"><property name="dataSource" ref="dataSource"/><property name="hibernateProperties"><props><prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop><prop key="show_sql">true</prop><prop key="hibernate.format_sql">true</prop><prop key="hibernate.hbm2ddl.auto">update</prop></props></property><property name="mappingResources"><list><value>Customer.hbm.xml</value></list></property></bean>

配置SessionFactory以及hibernate相关属性

最后配置事务并开启

 <!--配置事务--><bean class="org.springframework.orm.hibernate5.HibernateTransactionManager" id="transactionManager"><property name="sessionFactory" ref="sessionFactory"/></bean><!--开始事务的注解--><tx:annotation-driven/>

配置事务并开启

6.编写dao层,dao层需要使用Hibernate模板(HibernateTemplate),为了简化开发,可以直接继承HibernateDaoSupport,然后向其注入sessionFactory

/*** 客户dao层*/public class CustomerDaoImpl extends HibernateDaoSupport implements CustomerDao {/*** 保存客户*/@Overridepublic void add(Customer customer) {System.out.println("持久层Customer customer"+customer);this.getHibernateTemplate().save(customer);}
}

dao层代码

   <!--配置dao--><bean id="customerDao" class="cn.zqr.dao.impl.CustomerDaoImpl"><property name="sessionFactory" ref="sessionFactory"/></bean>

dao层的配置

转载于:https://www.cnblogs.com/zqr99/p/8046987.html

SSH整合方案二(不带hibernate.cfg.xml)相关推荐

  1. hibernate.properties与hibernate.cfg.xml 区别

    Hibernate的数据库连接信息是从配置文件中加载的. Hibernate的配置文件有两种形式:一种是XML格式的文件,一种是properties属性文件. 一)hibernate.cfg.xml ...

  2. hibernate.cfg.xml ,hibernate.properties 关系

    hibernate的数据库连接信息是从配置文件中加载的. Hibernate的配置文件有两种形式:一种是XML格式的文件,一种是properties属性文件. 一)hibernate.cfg.xml ...

  3. hibernate4 mysql配置文件_Hibernate的数据库连接信息配置文件hibernate.properties与hibernate.cfg.xml 区别...

    Hibernate的数据库连接信息配置文件hibernate.properties与hibernate.cfg.xml 区别 一.问题提出 测试运行一个"MyEclipse2014.Stru ...

  4. hibernate.cfg.xml详细配置

    <!--标准的XML文件的起始行,version='1.0'表明XML的版本,encoding='gb2312'表明XML文件的编码方式-->                  <? ...

  5. 关于Could not parse configuration: /hibernate.cfg.xml的问题

    第一次在eclipse上配置hibernate,问题百出啊,比如下面的org.hibernate.HibernateException: Could not parse configuration: ...

  6. Hibernate的配置文件 Hibernate.cfg.xml与xxx.hbm.xml

    1.hibernate.cfg.xml配置如下: (数据库连接配置) <?xml version="1.0" encoding="UTF-8"?> ...

  7. struts+hibernate+oracle+easyui实现lazyout组件的简单案例——hibernate的config文件(hibernate.cfg.xml)...

    hibernate.cfg.xml文件,必不可少的一个xml文件,上面附有数据库的用户名,密码,链接字符串,方言等信息,还包含映射的文件路径: <?xml version='1.0' encod ...

  8. Hibernate.cfg.xml配置文件结构详解

    Hibernate中配置主要分为两种: 一种包含了Hibernate与数据库的基本连接信息,在Hibernate工作的初始阶段,这些信息被先后加载到Configuration和SessionFacto ...

  9. hibernate.cfg.xml 配置(摘录)

    配置文件中映射元素详解 对象关系的映射是用一个XML文档来说明的.映射文档可以使用工具来生成,如XDoclet,Middlegen和AndroMDA等.下面从一个映射的例子开始讲解映射元素,映射文件的 ...

最新文章

  1. 免费开源的boostrap模板
  2. Matlab变量及其命名规则
  3. php manager 怎么用,Windows 2008 R2下如何利用PHPManager对PHP进行配置
  4. 怎样用Jquery实现拖拽层,并实现网站自定义化模块功能?
  5. 微机原理换行代码_微机原理
  6. 在Centos下启用mysql的远程访问账号
  7. shell脚本-从路径提取文件名、后缀
  8. 计算机仿真实训平台软件,虚拟仿真实验室软件有哪些
  9. Python爬取新东方在线网站大学英语六级词汇
  10. iOS小技能:社会化分享方案
  11. NTFS XCB定位
  12. 5G及后5G时代:万物互联到万物智能的黄金时代
  13. 多元统计分析——数据降维——因子分析(FA)
  14. 88是python语言的整数类型_少儿Python编程_第三讲:常量变量和数据类型
  15. 2021-AFCTF
  16. 利用反射模拟Tomcat类加载器的toString方法
  17. 自动控制原理——概述
  18. 国密消息鉴别码学习笔记 ——含GB/T 15852和HMAC(第2章 基于分组密码的MAC)
  19. gadget之usb_gadget
  20. 数据结构家谱c语言课程设计,数据结构和C语言的课程设计

热门文章

  1. H5页面移动端双击屏幕禁止页面放大
  2. CS144 lab2 笔记
  3. 换个角度看GAN:另一种损失函数
  4. Scrapy+ Selenium处理广告
  5. MySql 缓存查询原理与缓存监控 和 索引监控
  6. Android 颜色渲染(九) PorterDuff及Xfermode详解
  7. 对自己有用的VS调试技巧
  8. 利用CSS、JavaScript及Ajax实现图片预加载的三大方法及优缺点分析
  9. XML文件读取工具类
  10. 处理 JavaScript 异步操作的几种方法总结