整合思路(1)SSM是什么?Spring,SpringMVC,Mybastis(2)思路搭建整合的环境,初始化环境搭建Spring环境,配置完成并测试(service层)再使用Spring整合MyBatis框架,并测试(Dao层)最后使用Spring整合SpringMVC框架,并测试(web层)SSM搭建环境(1)数据库创建ssm(2)创建maven工程(3)git(创建.gitignore来过滤不用提交的文件)(4)依赖框架(5)log4j.properties数据库准备createdatabasessm;usessm;createtableperson(id...
继续阅读 >
分类:SSM整合
2020
10-24
10-24
ssm整合之Spring整合MyBatis框架配置事务的详细教程
ssm整合之Spring整合MyBatis框架配置事务1.在applicationContext.xml修改代码如下:<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframewor...
继续阅读 >