项目介绍:
什么是ssm?
ssm表示的是 Spring + SpringMVC + mybatis 的整合项目;
SSM框架整合就是分别实现Spring与SpringMVC、Spring与Mybatis的整合,而实现整合的主要工作就是把SpringMVC、Mybatis中的对象配置到Spring容器中,交给Spring来管理。
SSM分层作用
1.SpringMVC:web层,相当于controller(相当于struts的action)主要进行页面的;请求接受与响应。
组件包括:前端控制器,处理器映射器,处理器适配器,视图解析器,处理器Handler,视图View。其中,只有处理器Handler和视图View需要程序员开发。
Spring:IOC容器 DI AOP
MyBatis:自动映射结果集
2、SSM 框架对应到 Java EE 三层架构
(1)Web 层:SpringMVC
(2)Service 层:Spring
(3)DAO 层:MyBatis
整合的思想:
(1)整合 SpringMVC 框架和 Spring 框架
由于 SpringMVC 和 Spring 同出一源,所以可以无缝集成
注意:SpringMVC 的 Controller 对象的创建仍然是 SpringMVC 管理
(2)整合 Spring 框架和 MyBatis 框架
1)把 MyBatis 核心配置文件中的数据库连接配置,直接写在 Spring 核心配置文件中
2)把 MyBatis 的 SqlSessionFactory 对象的创建交给Spring 管理
3)配置:在服务器启动时加载 Spring 核心配置文件,创建出包含 SqlSessionFactory 对象在内的一系列对象
各框架的需要的属性:
关于 SSM 框架各自的配置文件及其需要的对象属性?
1、SpringMVC
SpringMVC是视图层(UI)的框架,把视图使用的对象交给SpringMVC容器管理,放在SpringMVC的配置文件中。
1)处理器对象(Controller);
2)注册组件扫描器<context:component-scan base-package="Controller注解所在的包名"/>;
3)注册视图解析器:InternalResourceViewResolver,配置前缀和后缀;
4)注册注解驱动:<mvc:annotation-driven>;
5)注册处理器的映射器,注册处理器的适配器(可不配置)
2、Spring
Spring管理业务层和持久层的对象(Service和dao),这些对象放在Spring的配置文件中,交给Spring的容器管理。
1)Service对象交给Spring,使用@Service注解。
<context:component-scan base-package="Service注解所在的包名"/>;
2)Dao对象交给Spring,MyBatis对象交给Spring。
a)数据源DataSource:c3p0,dbcp;
b)注册SqlSessionFactoryBean,目的是创建SqlSessionFactory;
c)注册动态代理扫描器,目的是创建Dao接口的动态代理对象,即Dao层的对象;
3)把事务管理交给Spring。
a)使用注解处理事务;
b)使用AspectJ的AOP在配置文件中管理事务
Spring容器和SpringMVC容器的关系:
Spring是SpringMVC的父容器。
是在SpringMVC容器(子容器)中可以知道Spring容器(父容器)的存在。子容器可以访问父容器,而父容器不能访问子容器。
SSM整合配置文件:
SSM整合的配置文件:
1)SpringMVC的配置文件,文件名是自定义的,SpringMVC.xml
2)Spring的配置文件,文件名是自定义的,applicationContext.xml
3)MyBatis的主配置文件,配置别名和SQL映射文件的位置;
4)SQL映射文件,写SQL语句的;
5)数据库属性配置文件,例如:jdbc.properties;
6)web.xml
a)注册SpringMVC的*调度器:作用是接收请求,在启动的时候创建SpringMVC容器,读取SpringMVC的配置文件;
b)注册Spring的监听器ContextLoadListener,在启动的时候创建Spring的容器,读取Spring的配置文件;
c)注册字符集过滤器,解决POST请求的乱码问题。
整合SSM的基本开端
一.准备工作
新建一个数据库表【这里我使用的工具是Navicat】
目录
④新建mybatis-config.xml【需要配置数据源】
新建一个maven项目 添加web 新建一些相关的包
①在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.ssm</groupId>
<artifactId>ssm01</artifactId>
<version>1.0-SNAPSHOT</version>
<!--配置web需要打包-->
<packaging>war</packaging>
<dependencies>
<!--1.先导入springmvc的包 导入一些依赖的spring相关的包
自动带入 aop beans context core web expression 包-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.9.RELEASE</version>
</dependency>
<!--2.spring包-->
<!--支持事务控制-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.2.9.RELEASE</version>
</dependency>
<!--面向切面编程 支持事务-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
<version>5.2.9.RELEASE</version>
</dependency>
<!--3.mybatis包-->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.7</version>
</dependency>
<!--适配包-->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>2.0.6</version>
</dependency>
<!--4.数据库相关-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.25</version>
</dependency>
<!--durid连接池-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.2.8</version>
</dependency>
<!--5.其他包-->
<!--servletAPI-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<!--web项目需要的包 jsp:jstl jsp整合包-->
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring5</artifactId>
<version>3.0.12.RELEASE</version>
</dependency>
<!--Tymleaf和Spring 整合包-->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<!--日志 log4j2-->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-web</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.2</version>
</dependency>
</dependencies>
</project>
②在web.xm下进行再次配置
【可能会出现关于SpringMVC.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">
<!--1.加载Spring容器-->
<!--加载配置文件-->
<context-param>
<param-name>contextConfigLocation</param-name>
<!--spring配置文件的位置-->
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<!--在启动项目是就加载容器-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--2.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:SpringMVC.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!--3.字符编码过滤器-->
<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>forceResponseEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!--4.处理rest风格的delete put请求-->
<filter>
<filter-name>hiddenHttpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>hiddenHttpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
③新建一个SpringMVC.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配置文件
配置网站跳转逻辑===》控制器
use-default-filters="false":默认使用规则 关闭-->
<!--1.只扫描Controller-->
<context:component-scan base-package="ssm" use-default-filters="false">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!-- 配置Thymeleaf视图解析器 -->
<bean id="viewResolver" class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
<property name="order" value="1"/>
<property name="characterEncoding" value="UTF-8"/>
<property name="templateEngine">
<bean class="org.thymeleaf.spring5.SpringTemplateEngine">
<property name="templateResolver">
<bean class="org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver">
<!-- 视图前缀 -->
<property name="prefix" value="/WEB-INF/templates/"/>
<!-- 视图后缀 -->
<property name="suffix" value=".html"/>
<property name="templateMode" value="HTML5"/>
<property name="characterEncoding" value="UTF-8" />
</bean>
</property>
</bean>
</property>
</bean>
<!--3.处理静态资源的 前端控制器不能处理的请求交给默认的servlet
tomcat服务器中-->
<mvc:default-servlet-handler/>
<!--4.开启注解驱动,让mvc支持更高级的功能-->
<mvc:annotation-driven/>
<!--5.视图控制器-->
<mvc:view-controller path="/" view-name="index"/>
</beans>
④新建mybatis-config.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="mapUnderscoreToCamelCase" value="true"/>
<!--为了避免版本更新,显示写出-->
<setting name="cacheEnabled" value="true"/>
</settings>
<!--取别名-->
<typeAliases>
<package name="ssm.bean"/>
</typeAliases>
<databaseIdProvider type="DB_VENDOR">
<!--配置数据库的别名-->
<property name="MySQL" value="mysql"/>
<property name="Oracle" value="oracle"/>
<property name="SQL Server" value="sqlserver"/>
</databaseIdProvider>
</configuration>
db.properties
log4j2.xml
<?xml version="1.0" encoding="UTF-8"?>
<!--Configuration后面的status用于设置log4j2自身内部的信息输出,可以不设置,当设置成trace时,可以看到log4j2内部各种详细输出-->
<configuration status="TRACE">
<!--先定义所有的appender-->
<appenders>
<!--输出日志信息到控制台-->
<console name="Console" target="SYSTEM_OUT">
<!--控制日志输出的格式-->
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</console>
</appenders>
<!--然后定义logger,只有定义了logger并引入的appender,appender才会生效-->
<!--root:用于指定项目的根日志,如果没有单独指定Logger,则会使用root作为默认的日志输出-->
<logger name="java.sql">
<level value="debug" />
</logger>
<logger name="org.apache.ibatis">
<level value="info" />
</logger>
<loggers>
<root level="debug">
<appender-ref ref="Console"/>
</root>
</loggers>
</configuration>
⑥新建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"
xmlns:mybatis-spring="http://mybatis.org/schema/mybatis-spring"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
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://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--spring配置文件-->
<!--1.扫描组件-->
<context:component-scan base-package="ssm">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!--2.配置数据源-->
<context:property-placeholder location="classpath:db.properties"/>
<!--配置数据源-->
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="driverClassName" value="${mysql.driver}"/>
<property name="url" value="${mysql.url}"/>
<property name="username" value="${mysql.username}"/>
<property name="password" value="${mysql.password}"/>
</bean>
<!--3.Spring整合MyBatis-->
<bean id="sessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybtis-config.xml"></property>
<property name="dataSource" ref="dataSource"></property>
<property name="mapperLocations" value="classpath:mapper/*.xml"></property>
</bean>
<!--4.配置扫描器 -->
<!--base-package:指定接口所在的包-->
<mybatis-spring:scan base-package="ssm.dao"/>
<!--5.配置事务-->
<!--①事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSource"></property>
</bean>
<!--②使用aop将事务增强到类的方法上-->
transaction-manager="transactionManager" 指定事务管理器
如果事务管理器的名字就叫transactionManager可以省略不写 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<!--配置增强的属性-->
<tx:attributes>
<!--全部方法都使用事务-->
<tx:method name="*"/>
<!--getxxx方法就只读-->
<tx:method name="get*" read-only="true"/>
</tx:attributes>
</tx:advice>
<!--③配置切面和切点 如何将增强加到方法 按照什么规则-->
<!--AOP配置-->
<aop:config>
<!--切入点-->
<aop:pointcut id="pt" expression="execution(* ssm.service.*.*(..))"/>
<!--切面 把哪个增强 增强到切点上-->
<aop:advisor advice-ref="txAdvice" pointcut-ref="pt"></aop:advisor>
</aop:config>
</beans>
【以上就是SSM整合所需要配置的所有文件】
接下来我们来进行一次测试
在项目开始我们新建了包,所以在接下来的测试中我们就需要到了
Department中【其中对部门属性,实现了封装】
public class Department implements Serializable {
private static final long serialVersionUID = 3101613282324740629L;
private Integer id;//
private String deptname;//
public Department() {
}
public Department(Integer id, String deptname) {
this.id = id;
this.deptname = deptname;
}
public static long getSerialVersionUID() {
return serialVersionUID;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDeptname() {
return deptname;
}
public void setDeptname(String deptname) {
this.deptname = deptname;
}
@Override
public String toString() {
return "Department{" +
"id=" + id +
", deptname='" + deptname + '\'' +
'}';
}
}
Employee【对属性实现了封装】
public class Employee implements Serializable {
private static final long serialVersionUID = 1423771930125710351L;
private Integer id;//
private String lastName;
private String gender;//性别
private String email;
//所属部门
private Department dept;
public Employee(Department dept) {
this.dept = dept;
}
public Department getDept() {
return dept;
}
@Override
public String toString() {
return "Employee{" +
"id=" + id +
", lastName='" + lastName + '\'' +
", gender='" + gender + '\'' +
", email='" + email + '\'' +
", dept=" + dept +
'}';
}
public void setDept(Department dept) {
this.dept = dept;
}
public Employee() {
}
public Employee(Integer id, String lastName, String gender, String email) {
this.id = id;
this.lastName = lastName;
this.gender = gender;
this.email = email;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
EmloyeeController
@Controller
public class EmployeeController {
//调用service
@Autowired
EmployeeService employeeService;
@RequestMapping("/getEmpall")
public String getEmpall(Model model){
List<Employee> empAll = employeeService.getEmpAll();
model.addAttribute("empall",empAll);
return "emp_list";
}
}
EmployeeService
@Service
public class EmployeeService {
/*从spring容器中 自动注入*/
@Autowired
EmployeeMapper mapper;
//调用dao查询全部
public List<Employee> getEmpAll(){
return mapper.getEmpByAll();
}
}
【跳转测试】
做了以上的步骤,我们进行跳转页面,显示内容
① index.html
②emp_list.html
<body>
<table border="1" width="800px">
<tr>
<td>编号</td>
<td>姓名</td>
<td>性别</td>
<td>邮箱</td>
<td>部门名</td>
</tr>
<!--遍历数据-->
<tr th:each="emp:${empall}">
<td th:text="${emp.id}"></td>
<td th:text="${emp.lastName}"></td>
<td th:text="${emp.gender}">男</td>
<td th:text="${emp.gender}">女</td>
<td th:text="${emp.email}"></td>
<td th:text="${emp.dept}!=null ? ${emp.dept.deptname}:'暂时没有部门'"></td>
</tr>
</table>
</body>
注意:在进行测试之前,需要配置相关的Tomcat
【测试显示出来的结果】