版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
SSM整合如何进行SSM框架整合?SpringMVC与Spring之间不存在整合的问题,只涉Spring与MyBatis的整合,以及SpringMVC与MyBatis的整合。1整合思路SSM框架整合图:如果前台页面查询出的数据,则三大框架整合成功。如何确定SSM框架整合成功?1整合思路aopalliance-1.0.jaraspectjweaver-1.8.10.jarspring-aop-4.3.6.RELEASE.jarspring-aspects-4.3.6.RELEASE.jarspring-beans-4.3.6.RELEASE.jarspring-context-4.3.6.RELEASE.jarspring-core-4.3.6.RELEASE.jarspring-expression-4.3.6.RELEASE.jarspring-jdbc-4.3.6.RELEASE.jarspring-tx-4.3.6.RELEASE.jar1.Spring框架所需的JAR包4个核心模块JARAOP开发使用的JARJDBC和事务的JAR注意:核心容器依赖的commons-logging的JAR在MyBatis的lib包中!2准备所需JAR包ant-1.9.6.jarant-launcher-1.9.6.jarasm-5.1.jarcglib-3.2.4.jarcommons-logging-1.2.jarjavassist-3.21.0-GA.jarlog4j-1.2.17.jarlog4j-api-2.3.jarlog4j-core-2.3.jarmybatis-3.4.2.jarognl-3.1.12.jarslf4j-api-1.7.22.jarslf4j-log4j12-1.7.22.jar2.MyBatis框架所需的JAR包核心JAR解压mybatis,lib中的所有JAR2准备所需JAR包mybatis-spring-1.3.1.jar3.MyBatis与Spring整合包mysql-connector-java-5.1.40-bin.jar4.数据库驱动JAR(MySQL)commons-dbcp2-2.1.1.jarcommons-pool2-2.4.2.jar5.数据源所需JAR(DBCP)2准备所需JAR包2准备所需JAR包
根据上述整合需求,SSM框架整合所需要的基本JAR包如下图所示:jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/mybatisjdbc.username=rootjdbc.password=rootjdbc.maxTotal=30jdbc.maxIdle=10jdbc.initialSize=5perties创建Web项目,导入JAR包,并发布到类路径下。1创建一个名为config的源文件夹,创建数据库常量配置文件perties、Spring配置文件applicationContext.xml,以及mybatis-config.xml、springmvc-config.xml。23编写配置文件<context:property-placeholderlocation="classpath:perties"/><beanid="dataSource"class="mons.dbcp2.BasicDataSource"><propertyname="driverClassName"value="${jdbc.driver}"/>...</bean><beanid="transactionManager"class="org.springframework.jdbc.datasource.DataSourceTransactionManager"><propertyname="dataSource"ref="dataSource"/></bean> <tx:annotation-driventransaction-manager="transactionManager"/><beanid="sqlSessionFactory"class="org.mybatis.spring.SqlSessionFactoryBean"><propertyname="dataSource"ref="dataSource"/><propertyname="configLocation"value="classpath:mybatis-config.xml"/></bean><beanclass="org.mybatis.spring.mapper.MapperScannerConfigurer"><propertyname="basePackage"value=".sict.dao"/></bean><context:component-scanbase-package=".sict.service"/>3编写配置文件applicationContext.xml数据源配置配置事务管理器开启事务注解配置MyBatis工厂配置mapper文件扫描器Service层注解扫描<?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEconfigurationPUBLIC"-////DTDConfig3.0//EN""/dtd/mybatis-3-config.dtd"><configuration> <typeAliases> <packagename=".sict.po"/> </typeAliases></configuration>3编写配置文件mybatis-config.xml
<context:component-scanbase-package=".sict.controller"/><mvc:annotation-driven/><beanclass="org.springframework.web.servlet.view.InternalResourceViewResolver"> <propertyname="prefix"value="/WEB-INF/jsp/"/> <propertyname="suffix"value=".jsp"/></bean>3编写配置文件Controller层注解扫描配置视图解析器加载注解驱动创建springmvc-config.xml:33编写配置文件<context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value></context-param><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><filter><filter-name>encoding</filter-name><filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class><init-param><param-name>encoding</param-name><param-value>UTF-8</param-value></init-param></filter><filter-mapping><filter-name>encoding</filter-name><url-pattern>*.action</url-pattern></filter-mapping><servlet><servlet-name>springmvc</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:springmvc-config.xml</param-value></init-param><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>springmvc</servlet-name><url-pattern>/</url-pattern></servlet-mapping>配置Spirng文件监听器配置编码过滤器配置SpirngMVC前端控制器
在web.xml中,配置Spring的文件监听器、编码过滤器以及SpringMVC的前端控制器等信息。44整合应用测试基于SSM框架查询客户信息。publicclassCustomer{ privateIntegerid;//主键id privateStringusername;//客户名称
privateStringjobs;//职业
privateStringphone;//电话
//..省略getter/setter方法}4整合应用测试
在src目录下,创建.sict.po包,并在包中创建持久化类Customer:1package.sict.dao;import.sict.po.Customer;publicinterfaceCustomerDao{ publicCustomerfindCustomerById(Integerid);}4整合应用测试CustomerDao.java
在src目录下,创建一个.sict.dao包,创建接口CustomerDao以及映射文件CustomerDao.xml:2<?xmlversion="1.0"encoding="UTF-8"?><!DOCTYPEmapperPUBLIC"-////DTDMapper3.0//EN""/dtd/mybatis-3-mapper.dtd"><mappernamespace=".sict.dao.CustomerDao"><selectid="findCustomerById"parameterType="Integer"resultType="Customer"> select*fromt_customerwhereid=#{id}</select></mapper>4整合应用测试CustomerDao.xmlpackage.sict.service;import.sict.po.Customer;publicinterfaceCustomerService{ publicCustomerfindCustomerById(Integerid);}4整合应用测试
在src目录下,创建.sict.service包,创建接口CustomerService:3@Service@TransactionalpublicclassCustomerServiceImplimplementsCustomerService{ //注解注入CustomerDao @Autowired privateCustomerDaocustomerDao; //查询客户
publicCustomerfindCustomerById(Integerid){ returnthis.customerDao.findCustomerById(id); }}4整合应用测试
创建一个.sict.service.impl包,创建实现类CustomerServiceImpl:4@ControllerpublicclassCustomerController{ @Autowired privateCustomerServicecustomerService; @RequestMapping("/findCustomerById") publicStringfindCustomerB
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 开题报告:职教改革背景下高职学生学习力提升研究
- 开题报告:义务教育教材难度、容量的国际比较研究
- 《货物运输实务》课件 12.1货物运输组织绩效评价方法
- 开题报告:新中国教育“减负”政策中的教育公平观研究
- 开题报告:新时代教育评价改革的实现路径研究
- 《阴道镜的临床应用》课件
- 2024年常用紧凑型汽车租赁协议格式一
- 2024年专项工程车辆运输合作协议
- 2025全球儿童玩具洞察报告
- 2024工程项目人力成本支付协议条款一
- 教科版小学科学一年级上册期末测试试卷有答案
- 政府数据信息保密协议范本
- 预防艾滋病梅毒和乙肝母婴传播阻断项目培训讲义
- 单位工程竣工验收证明书(标准格式)-扬州市
- 送达地址确认书
- 自身免疫性多内分泌综合征
- 四年级除法竖式计算题500道
- 《新能源汽车》课程说课PPT
- 2023届河南省商丘市、周口市高三二模语文试题( 含答案解析 )
- 论广东省南岭地区的基督教
- 国家公务员考试准考证模板
评论
0/150
提交评论