1. 引入依赖的jar包(pom.xml)
a. <!--Spring SpringMVC相关-->  spring-webmvc
b. <!--Spring事务-->  spring-jdbc
c. <!--面向切面编程-->  spring-aspects
d. <!--mybatis-->  mybatis
e. <!--mybatis 整合 spring-->  mybatis-spring
f. <!--数据库连接池、驱动-->  c3p0  mysql-connector-java
g. <!--jstl,servlet-api-->  jstl  javax.servlet-api
h. <!— MBG-->  mybatis-generator-core
i. <!— junit-->  junit
  1. webapp/WEB-INF/web.xml 中
  2. src/main/resources目录下新建applicationContext.xml
  3. web.xml同级目录下新建dispatcherServlet-servlet.xml并配置
    1. 扫描控制器
    2. 配置视图解析器
    3. <!--两个标准配置  -->
a. 服务器一启动就启动Spring 容器
b. springMVC前端控制器
c. 字符编码过滤器,一定要放在所有过滤器之前
d. 使用Rest风格的URI,将页面普通的post请求转为指定的
delete或者put请求

<!-- 将springmvc不能处理的请求交给tomcat -->

<!-- 能支持springmvc更高级的一些功能-->

  1. 配置Spring在applicationContext.xml中

a. 扫描除控制器以外的其他组件

b. 配置数据源(同时将dbconfig.properties文件导入到resources目录下)

c. 配置和MyBatis的整合,同时在src/main/resources下创建mybaitis的配置文件mybatis-config.xml以及mapper文件夹

d. 配置扫描器,将mybatis接口的实现加入到ioc容器中

e. 配置一个可以执行批量的sqlSession

f. 配置事务控制

g. xml配置事务<!-- 切入点表达式 *表示返回值类型 ,表示com.cn.crud.service包下的,..表示即使有子包仍然可以,表达式表达的是该包下的所有方法都能切入事务-->

h. 配置事务增强,事务如何切入

  1. 配置MyBatis在mybatis-config.xml中
  2. 在当前工程下创建mbg.xml进行配置,使用mybatis 逆向工程生成对应的bean 、dao和 mapper
  3. mbg.xml文件
  4. <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE generatorConfiguration
    PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
    "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
    <generatorConfiguration>

    <context id="DB2Tables" targetRuntime="MyBatis3">
    <commentGenerator>
    <property name="suppressAllComments" value="true" />
    </commentGenerator>
    <!-- 配置数据库连接 -->
    <jdbcConnection driverClass="com.mysql.jdbc.Driver"
    connectionURL="jdbc:mysql://localhost:3306/ssm_crud" userId="root"
    password="123456">
    </jdbcConnection>

    <javaTypeResolver>
    <property name="forceBigDecimals" value="false" />
    </javaTypeResolver>

    <!-- 指定javaBean生成的位置 -->
    <javaModelGenerator targetPackage="com.atguigu.crud.bean"
    targetProject=".\src\main\java">
    <property name="enableSubPackages" value="true" />
    <property name="trimStrings" value="true" />
    </javaModelGenerator>

    <!--指定sql映射文件生成的位置 -->
    <sqlMapGenerator targetPackage="mapper" targetProject=".\src\main\resources">
    <property name="enableSubPackages" value="true" />
    </sqlMapGenerator>

    <!-- 指定dao接口生成的位置,mapper接口 -->
    <javaClientGenerator type="XMLMAPPER"
    targetPackage="com.atguigu.crud.dao" targetProject=".\src\main\java">
    <property name="enableSubPackages" value="true" />
    </javaClientGenerator>

    <!-- table指定每个表的生成策略 -->
    <table tableName="tbl_emp" domainObjectName="Employee"></table>
    <table tableName="tbl_dept" domainObjectName="Department"></table>
    </context>
    </generatorConfiguration>

  5. Mybatis逆向工程测试

public class MBGTest {

public static void main(String[] args) throws Exception {

List<String> warnings = new ArrayList<String>();

boolean overwrite = true;

File configFile = new File("mbg.xml");

ConfigurationParser cp = new ConfigurationParser(warnings);

Configuration config = cp.parseConfiguration(configFile);

DefaultShellCallback callback = new DefaultShellCallback(overwrite);

MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config,

callback, warnings);

myBatisGenerator.generate(null);

}

}

  1. 修改mapper文件

其中,<resultMap id="BaseResultMap_Dept" type="com.cn.crud.bean.Employee">
  <result column="emp_id"
jdbcType="INTEGER" property="empId" />
  <result column="emp_name"
jdbcType="VARCHAR" property="empName" />
  <result
column="emp_gender" jdbcType="CHAR"
property="empGender" />
  <result column="emp_email"
jdbcType="VARCHAR" property="empEmail" />
  <result column="d_id"
jdbcType="INTEGER" property="dId" />
  <association

property="department"
javaType="com.cn.crud.bean.Department">
    <id column="dept_id"
property="deptId"/>
    <result
column="dept_name" property="deptName"/>
</association>

</resultMap>

<association> 关联查询,了解

10.  * 测试dao层的工作

*推荐Spring的项目就可以使用Spring的单元测试,可以自动注入我们需要的组件

*1、导入SpringTest模块

在pom.xml中引入spring-test依赖

<!-- https://mvnrepository.com/artifact/org.springframework/spring-test
-->

<dependency>

<groupId>org.springframework</groupId>

<artifactId>spring-test</artifactId>

<version>5.1.3.RELEASE</version>

<scope>test</scope>

</dependency>

*2、@ContextConfiguration指定Spring配置文件的位置

*3、直接autowired要使用的组件即可

*/

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations={"classpath:applicationContext.xml"})

public class MapperTest {

@Autowired

DepartmentMapper
departmentMapper;

@Autowired

EmployeeMapper
employeeMapper;

@Autowired

SqlSession
sqlSession;

/**

* 测试DepartmentMapper

*/

@Test

public
void testCRUD(){

/*   //1、创建SpringIOC容器

ApplicationContext
ioc = new ClassPathXmlApplicationContext("applicationContext.xml");

//2、从容器中获取mapper

DepartmentMapper
bean = ioc.getBean(DepartmentMapper.class);*/

System.out.println(departmentMapper);

//1、插入几个部门

//        departmentMapper.insertSelective(new
Department(null, "开发部"));

//        departmentMapper.insertSelective(new
Department(null, "测试部"));

//2、生成员工数据,测试员工插入

employeeMapper.insertSelective(new
Employee(null, "Jerry", "M", "Jerry@atguigu.com",
1));

//3、批量插入多个员工;批量,使用可以执行批量操作的sqlSession。

//        for(){

//              employeeMapper.insertSelective(new
Employee(null, , "M", "Jerry@atguigu.com", 1));

//        }

EmployeeMapper
mapper = sqlSession.getMapper(EmployeeMapper.class);

for(int
i = 0;i<1000;i++){

String
uid = UUID.randomUUID().toString().substring(0,5)+i;

mapper.insertSelective(new
Employee(null,uid, "M", uid+"@atguigu.com", 1));

}

System.out.println("批量完成");

}

}

11.  分页使用插件pagehelper

需要在pom.xml中引入依赖

<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper -->
<dependency>
  <groupId>com.github.pagehelper</groupId>
  <artifactId>pagehelper</artifactId>
  <version>5.1.8</version>
</dependency>

其他配置查看:

https://github.com/pagehelper/Mybatis-PageHelper/blob/master/wikis/zh/HowToUse.md

  1. 12.  Spring分页测试代码

@RunWith(SpringJUnit4ClassRunner.class)

@WebAppConfiguration

@ContextConfiguration(locations = { "classpath:applicationContext.xml",

"file:src/main/webapp/WEB-INF/dispatcherServlet-servlet.xml" })

public class MvcTest {

// 传入Springmvc的ioc

@Autowired

WebApplicationContext context;

// 虚拟mvc请求,获取到处理结果。

MockMvc mockMvc;

@Before

public void initMokcMvc() {

mockMvc = MockMvcBuilders.webAppContextSetup(context).build();

}

@Test

public void testPage() throws Exception {

//模拟请求拿到返回值

MvcResult result = mockMvc.perform(MockMvcRequestBuilders.get("/emps").param("pn", "5"))

.andReturn();

//请求成功以后,请求域中会有pageInfo;我们可以取出pageInfo进行验证

MockHttpServletRequest request = result.getRequest();

PageInfo pi = (PageInfo) request.getAttribute("pageInfo");

System.out.println("当前页码:"+pi.getPageNum());

System.out.println("总页码:"+pi.getPages());

System.out.println("总记录数:"+pi.getTotal());

System.out.println("在页面需要连续显示的页码");

int[] nums = pi.getNavigatepageNums();

for (int i : nums) {

System.out.print(" "+i);

}

//获取员工数据

List<Employee> list = pi.getList();

for (Employee employee : list) {

System.out.println("ID:"+employee.getEmpId()+"==>Name:"+employee.getEmpName());

}

}

}

13. @ResponseBody
 @ResponseBody 可以把返回的对象转换为json串,要想其正常工作需要导入jackson包:jackson-databind
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
<dependency>
  <groupId>com.fasterxml.jackson.core</groupId>
  <artifactId>jackson-databind</artifactId>
  <version>2.9.8</version>
</dependency>
 

14.  rest风格的URI

SSM框架搭建过程的更多相关文章

  1. SpringMVC笔记——SSM框架搭建简单实例

    落叶枫桥 博客园 首页 新随笔 联系 订阅 管理 SpringMVC笔记——SSM框架搭建简单实例 简介 Spring+SpringMVC+MyBatis框架(SSM)是比较热门的中小型企业级项目开发 ...

  2. SSM框架搭建web服务器实现登录功能(Spring+SpringMVC+Mybatis)

    初学java EE,虽然知道使用框架会使开发更加便捷高效,但是对于初学者来说,感到使用框架比较迷惑,尤其是各种jar包的引用.各种框架的配置.注解的使用等等. 最好的学习方法就是实践,于是下载了一个现 ...

  3. SSM 框架搭建

    SSM框架搭建(Spring.SpringMVC.Mybatis) 一:基本概念 Spring :      Spring是一个开源框架,Spring是于2003 年兴起的一个轻量级的Java 开发框 ...

  4. SSM框架整合过程总结

    -----------------------siwuxie095                                 SSM 框架整合过程总结         1.导入相关 jar 包( ...

  5. SSM框架搭建教程(从零开始,图文结合)

    1.准备 IntelliJ IDEA Tomcat JDK Maven mysql spring.springmvc.mybatis 了解 现在假设如上条件你都具备,那么通过我这篇博客 你一定可以整合 ...

  6. 实习小结(二)--- SSM框架搭建

    SSM项目框架搭建 前几天做了一个学生信息管理的项目,使用纯控制台输入,查询数据库,将信息在控制台中打印,功能完善得差不多之后,老师让将这个项目移植到Web中,使用Spring+SpringMVC+M ...

  7. idea ssm框架搭建

    1.分享一篇完整的ssm框架搭建连接 大牛博客:https://www.cnblogs.com/toutou/p/ssm_spring.html#_nav_0 2.我的搭建的完整项目连接,可以进入我的 ...

  8. ssm框架搭建整合测试

    下载各种jar包 mybatis下载 https://github.com/mybatis/mybatis-3/releases mysql驱动下载 http://mvnrepository.com/ ...

  9. SSM框架搭建详细解析

    总结了一下搭建SSM框架流程,在以后用到的时候方便回头使用. 使用工具:MyEclipse 2015:Tomcat 8版本:jdk1.8版本. 首先: 1:创建一个WebProject项目,jdk1. ...

随机推荐

  1. MyCat(1.2)Mycat的安装

    [0]基本环境 OS:CentOS7.5 Software envireonment:JDK1.7.0 Master Software:Mycat1.6.5 Linux Client:CRT 8.0 ...

  2. python不能运行

    运行python文件出现,报错please select a valid interpreter 这是因为没有选择interpreter  就是更改目录时需要重新选择pytho解析器 解决方法如下 更 ...

  3. 「树的直径」BFS方法证明

    选定任意一个点u,从u开始BFS求出距离u最大的点s,再从s点出发BFS到距离s最大的点t,则dis(s,t)即为树的直径 证明 其实只要找到了树的直径的一个端点,再BFS找到最远点就一定是直径的另一 ...

  4. delphi中如何将一整个文件读入内存

    来源 https://bbs.csdn.net/topics/390985048 分配一块大内存吧,要是一下申请不了64M那么大,就多申请几块小的,用个链表连起来.用FileStream类的方法读取文 ...

  5. mysql审计插件

    Audit Plugin安装使用 原文: https://www.cnblogs.com/waynechou/p/mysql_audit.html#_label0   #有卸载方法 下载地址: htt ...

  6. @encode关键字

    @encode() 为了更好的互操作性,Objective-C 的数据类型,甚至自定义类型.函数或方法的元类型,都可以使用 ASCII 编码.@encode(aType) 可以返回该类型的 C 字符串 ...

  7. (选做)实现mypwd

    选做 实现mypwd 实验内容: 1.学习pwd命令. 2.研究pwd实现需要的系统调用(man -k; grep),写出伪代码. 3.实现mypwd. 4.测试mypwd. 实验步骤: 学习pwd命 ...

  8. 凉经-Mozilla Firefox Ltd-前端工程师

    北京谋智火狐信息技术有限公司(北京市东城区建国门华润大厦 17 层)过去面试的时候感觉电梯好神奇啊!一边的电梯是直达 18 层以上的,我按了 18 层准备到了再往下走一层,一个老司机和我说要做另一边的 ...

  9. Windows 08 R2_创建AD DS域服务(图文详解)

    目录 目录 Active Directory概念 创建第一个AD域控制器 搭建DNS服务器 使用Windows窗口程序创建AD域控制器 AD与LDAP的关系 使用Powershell来创建ADDS域控 ...

  10. Java + selenium window()接口方法介绍

    在浏览器启动的代码中,有一段关于window接口的调用,这篇文章就是来解释介绍这个接口的.代码如下 driver.manage().window().maxmize(); window接口主要是用来控 ...