文章目录


第三章 SSM整合

SpringMVC+Spring +MyBatis(Ibatis),所以有人叫做SSI整合。SSM整合是使用三个框架的优势功能。

1. SSM整合思路

三个框架对应的三层架构的三层。SpringMVC是视图层,Spring是业务层,MyBatis是持久层。

SSM整合,需要把对象交给容器管理,让容器去创建项目中要使用的java对象。现在有两个容器。

第一个容器是Spring容器:Spring容器是管理service和dao等对象。是业务层对象的容器。

第二个是SpringMVC容器:管理控制器对象的。是视图层对象。

SSM整合就是把对象交给容器管理。两个容器共存,各自负责管理不同的对象。把对象声明到配置文件中,让两个容器创建对象。spring创建service,dao ;springmvc创建controller。

2.容器的创建

Spring容器创建:在web.xml声明了监听器ContextLoaderListenner,这个功能框架写好了。功能是创建spring的容器对象WebApplicationContext。在创建WebApplicationContext对象时,读取spring的配置文件,读取文件的时候,遇到bean标签或者注解,就能创建service,dao等对象,放到容器中。

SpringMVC容器:在web.xml声明了中央调度器DispatcherServlet的init()方法中,创建了容器对象WebApplicationContext,在创建WebApplication对象时,读取springmvc的配置文件,读取文件的时候,遇到@Controller注解,创建控制器Controller对象,放到容器中。

内存中,创建对象。

WebApplicationContext spring = new WebAplicationContext();  // spring-map(service.dao)
WebApplicationContext springmvc = new WebAplicationContext();//springmvc-map(controller)

SpringMVC容器和Spring容器的关系:设计上SpringMVC容器对象是Spring容器的子容器。

Spring是父容器。SpringMVC子容器。相当于java中的继承关系。子容器能访问父容器中的对象,controller对象能访问父中的service对象。

3. SSM整合开发的步骤

3.1.使用student2表进行增删改查。(id,name,age)

3.2.创建maven web 项目

3.3.修改pom.xml加入依赖

加入依赖:spring,springmvc,mybatis,mybatis-spring,mysql驱动,druid,jackson

pom.xml

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

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.sunny</groupId>
<artifactId>ch06-SSM</artifactId>
<version>1.0.0</version>
<packaging>war</packaging>



<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!-- jsp依赖 -->
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2.1-b03</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.9</version>
</dependency>

<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.0</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.1</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.1</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.9</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.12</version>
</dependency>

</dependencies>

<build>
<finalName>ch06-SSM</finalName>
<resources>
<resource>
<directory>src/main/java</directory><!--所在的目录-->
<includes>
<!--包括目录下的.properties,.xml 文件都会扫描到-->
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>

</build>
</project>

3.4.写web.xml:声明容器对象

1)声明spring的监听器ContextLoaderListener:创建spring的容器对象,创建service,dao对象。

2)声明springmvc的中央调度器DispatherServlet:创建springmvc容器对象,创建controller对象。

3)声明字符集的过滤器CharacterEncodingFilter,解决post请求乱码的问题

web.xml

<?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_4_0.xsd"
version="4.0">
<!-- 声明spring监听器-->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:conf/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 声明springmvc的中央调度器-->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:conf/dispatcherServlet.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>

<!-- 声明字符集过滤器-->
<filter>
<filter-name>characterEncodingFilter</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>
<init-param>
<param-name>forceRequestEncoding</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>forceResponseEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

</web-app>

3.5.创建程序中的包,dao,service,controller,entity

SpringMVC详解(三)SSM整合开发_spring

3.6.写spring,springmvc,mybatis配置文件

6.1spring 配置文件 applicationContext.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
<!-- spring的配置文件:声明service,dao,工具类,事务配置-->

<!-- 注解扫描器-->
<context:component-scan base-package="com.sunny.service"/>

<context:property-placeholder location="classpath:conf/jdbc.properties"/>
<!-- 数据源-->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
init-method="init" destroy-method="close">
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</bean>

<bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 赋值-->
<property name="dataSource" ref="dataSource"/>
<property name="configLocation" value="classpath:conf/mybatis.xml"/>
</bean>

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="factory"/>
<property name="basePackage" value="com.sunny.dao"/>
</bean>

<!-- 事务配置-->

</beans>

6.2springmvc 配置文件 dispatcherServlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- springmvc的配置文件:声明controller,视图解析器等web开发中的对象-->
<context:component-scan base-package="com.sunny.controller"/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp"/>
<property name="suffix" value=".jsp"/>
</bean>
<!--
作用:
1.创建HttpMessageConverter接口的7个实现类对象,处理java对象到json的转换
2.解决静态资源中,动态资源访问失败的问题。
-->
<mvc:annotation-driven/>
</beans>

6.3mybatis配置文件 mybatis.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 设置日志-->
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>

<typeAliases>
<!-- domain包中的类名就是别名-->
<package name="com.sunny.domain"/>
</typeAliases>

<mappers>

<package name="com.sunny.dao"/>

</mappers>
</configuration>

6.4jdbc.properties

jdbc.url=jdbc:mysql://localhost:3306/springdb
jdbc.username=root
jdbc.password=123

3.7.写java代码,实体类,dao接口和mapper文件,service类,controller类,使用注解声明对象和赋值

7.1实体类

package com.sunny.domain;

public class Student {
private Integer id;
private String name;
private Integer age;

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public String getName() {
return name;
}

public void setName(String name) {
this.name = name;
}

public Integer getAge() {
return age;
}

public void setAge(Integer age) {
this.age = age;
}

@Override
public String toString() {
return "Student{" +
"id=" + id +
", name='" + name + '\'' +
", age=" + age +
'}';
}
}

7.2dao接口

package com.sunny.dao;

import com.sunny.domain.Student;

import java.util.List;

public interface StudentDao {

int insertStudent(Student student);

List<Student> selectStudents();


}

7.3mapper文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.sunny.dao.StudentDao">
<!-- 使用insert,update,delete,select标签写sql语句-->

<insert id="insertStudent">
insert into student2(name,age) values(#{name},#{age})
</insert>

<select id="selectStudents" resultType="com.sunny.domain.Student">
select id,name,age from student2 order by id desc
</select>

</mapper>

7.4service类

StudentService

package com.sunny.service;

import com.sunny.domain.Student;

import java.util.List;

public interface StudentService {
int addStudent(Student student);

List<Student> queryStudents();
}

impl

package com.sunny.service.impl;

import com.sunny.dao.StudentDao;
import com.sunny.domain.Student;
import com.sunny.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.util.List;

/**
* <bean></bean>
* @Service
*
* */

@Service
public class StudentServiceImpl implements StudentService {

/**
* dao 是引用类型。StudentDao类型的对象在spring的配置文件中创建的对象
*
* 引用类型自动注入 @Autowired ,@Resource
* */
@Autowired
private StudentDao dao;

@Override
public int addStudent(Student student) {
int rows = dao.insertStudent(student);
return rows;
}

@Override
public List<Student> queryStudents() {
List<Student> list =dao.selectStudents();
return list;
}
}

7.5controller

package com.sunny.controller;

import com.sunny.domain.Student;
import com.sunny.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

import java.util.List;

/**
*
* */

@Controller
@RequestMapping("/student")
public class StudentController {

/**
* 声明引用类型,调用引用类型的业务方法、
* 引入类型自动注入 @Autowired, @Resource
* */
@Autowired
private StudentService service;

// 添加学生
@RequestMapping("/addStudent.do")
public ModelAndView addStudent(Student student){
ModelAndView mv = new ModelAndView();

// 调用service,处理业务逻辑,把处理结果返回给用户
int rows = service.addStudent(student);
String msg = "注册失败!";
if(rows>0){
//注册成功,给用户成功的数据和视图
msg = "注册成功!!";
}
mv.addObject("msg",student.getName()+","+msg);
mv.setViewName("result");

return mv;
}
@RequestMapping("/queryStudent.do")
@ResponseBody
public List<Student> queryStudents(){
List<Student> students=service.queryStudents();
return students;

}
}

3.8.创建视图文件,各种jsp

8.1index.jsp

SpringMVC详解(三)SSM整合开发_java_02

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>浏览学生</title>
<script type="text/javascript" src="js/jquery-3.4.1.js"></script>
<script type="text/javascript">
$(function () {
//页面加载后,执行ajax,获取数据
getStudentInfo();
$("#doAjax").click(function () {
getStudentInfo();
})
})

function getStudentInfo() {
$.ajax({
url:"student//queryStudent.do",
dataType:"json",
success:function(resp) {
$("#stuinfo").empty();
$.each(resp,function (i,n) {
$("#stuinfo").append(
"<tr><td>"+n.id+"</td><td>"+
n.name+"</td><td>"+
n.age+"</td><tr>");
})
}
})


}
</script>


</head>
<body>

<div align="center">
<p>浏览学生 <button id="doAjax">获取学生数据</button> </p>
<table>
<thead>
<tr>
<td>id</td>
<td>姓名</td>
<td>年龄</td>
</tr>
</thead>
<tbody id="stuinfo">

</tbody>
</table>
</div>

</body>
</html>

8.2result.jsp

<%--
Created by IntelliJ IDEA.
User: 高昱泽
Date: 2021/11/9
Time: 21:11
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
result.jsp , ${msg}
</body>
</html>

8.3addStudent.jsp

<%--
Created by IntelliJ IDEA.
User: 高昱泽
Date: 2021/11/9
Time: 21:13
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>添加</title>
</head>
<body>
<div align="center">
<p>注册学生</p>
<form action="student/addStudent.do" method="post">
<table>
<tr>
<td>姓名:</td>
<td><input type="text" name="name"> </td>
</tr>

<tr>
<td>年龄:</td>
<td><input type="text" name="age"> </td>
</tr>
<tr>
<td>操作:</td>
<td><input type="submit" value="注册"> </td>
</tr>
</table>
</form>
</div>

</body>
</html>

8.4 listStudent.jsp (ajax根据查询到的数据展示列表)

SpringMVC详解(三)SSM整合开发_xml_03

<%--
Created by IntelliJ IDEA.
User: 高昱泽
Date: 2021/11/9
Time: 22:06
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>浏览学生</title>
<script type="text/javascript" src="js/jquery-3.4.1.js"></script>
<script type="text/javascript">
$(function () {
//页面加载后,执行ajax,获取数据
getStudentInfo();
$("#doAjax").click(function () {
getStudentInfo();
})
})

function getStudentInfo() {
$.ajax({
url:"student//queryStudent.do",
dataType:"json",
success:function(resp) {
$("#stuinfo").empty();
$.each(resp,function (i,n) {
$("#stuinfo").append(
"<tr><td>"+n.id+"</td><td>"+
n.name+"</td><td>"+
n.age+"</td><tr>");
})
}
})


}
</script>


</head>
<body>

<div align="center">
<p>浏览学生 <button id="doAjax">获取学生数据</button> </p>
<table>
<thead>
<tr>
<td>id</td>
<td>姓名</td>
<td>年龄</td>
</tr>
</thead>
<tbody id="stuinfo">

</tbody>
</table>
</div>

</body>
</html>

4. 相对路径

在页面中,有路径的问题,访问路径有“/”开头的,还没有“/”。

<a href="test/some.do">没有斜杠开头</a>
<a href="/test/some.do">有斜杠开头</a>

<a href="http://www.baidu.com">协议的地址</a>

地址的区别,现在看的都是页面中的地址。

1)有协议开头的例如http://www.baidu.com。称为绝对地址,地址是唯一的,能够直接访问。

2)没有协议开头的,例如test/some.do,/test/some.do称为相对地址。相对地址单独使用不能表示某个资源,不能访问。相对地址必须有参考地址在一起,才能表示一个资源的完整地址,才能访问。

参考地址:有“/”和没有“/”参考地址不同的。

1)没有斜杠开头的地址,参考地址:当前资源的访问路径。

当前访问的地址:http://localhost:8080/ch07_path/index.jsp

资源名称:index.jsp

资源路径:http://localhost:8080/ch07_path

在index.jsp 有访问地址< a href=“test/some.do”>

点击some.do后,地址变成 http://localhost:8080/ch07_path/test/some.do

当前访问的地址: http://localhost:8080/ch07_path/test/some.do

资源名称:some.do

资源路径:http://localhost:8080/ch07_path/test/

再去点击 test/some.do 地址: http://localhost:8080/ch07_path/test/test/some.do

没有斜杠开头的地址: 参考地址+当前的相对地址 组合在一起是最后的访问地址。

解决方式:

1)使用${pageContext.request.contextPath}。表示访问项目的路径(上下文 context path)
<a href="${pageContext.request.contextPath}/test/some.do" >发起请求test/some.do</a>

优点:好理解,
缺点:每个链接地址,都需要加el表达式

2)固定当前页面中的 没有“/”开头地址的参考地址。
使用html中base标签

<%
String basePath = request.getScheme() + "://" + request.getServerName()
+ ":" + request.getServerPort() + request.getContextPath() + "/";
%>
<head>
<title>请求方式</title>
<base href="<%=basePath%>">
<%-- <base href="http://localhost:8080/ch07_path/">--%>
</head>

2)有斜杠开头的地址

< a href="/test/some.do">

访问的地址:http://localhost:8080/ch07_path/index.jsp
在index.jsp有相对地址 <a href="/test/some.do">/test/some.do</a>
点击链接后地址是:http://localhost:8080/test/some.do

使用“/”开头的地址,参考地址是服务器地址,也就是从协议到端口号位置 http://localhost:8080/
使用参考地址 http://localhost:8080/+相对地址 /test/some.do
最后就是协议开始到端口号的位置
http://localhost:8080
地址缺少项目访问路径,ch07_path。

解决问题的方式:在你的路径前面加入el表示${pageContext.request.contextPath}

<p>有斜杠开头的地址</p>
<a href="${pageContext.request.contextPath}/test/some.do">/test/some.do</a>