第三章 SSM整合案例1-写配置文件(重要)
具体步骤
SSM:Spring+SpringMVC+MyBatis
SpringMVC:视图层,界面层,负责接收请求,显示处理结果
Spring:业务层,用来管理service,dao,工具类对象的
MyBatis:持久层,负责访问数据
用户发起请求--SpringMVC接收--Spring中的service对象--MyBatis处理数据
SSM整合也叫做SSI(IBatis也就是MyBatis),整合中有容器。
1.第一个容器SpringMVC容器,管理Controller控制器对象。
2.第二个容器Spring容器,管理service和Dao,以及工具类对象。
SpringMVC容器和Spring容器是有关系的,关系已经确实好了
SpringMVC容器是Spring容器的子容器,类似java中的继承,子可以访问父的内容
在子容器中controller可以访问父容器中的service对象,可以实现controller使用service对象
实现步骤:
0.使用Springdb数据库中的student表(id auto_increment,name,age)
1.新建maven web项目
2.加入依赖
springmvc,spring,mybatis三个框架的依赖,jakson依赖,mysql驱动,jsp,servlet依赖
3.写web.xml
1)注册DispatcherServlet,目的:创建springmvc容器对象,才能创建Controller类对象
创建的是Servlet,才能接收用户的请求
2)注册spring的监听器:ContextLoaderListener,目的:创建spring的容器对象,才能创建service,dao对象。
3)注册字符集过滤器,解决post请求乱码的问题
4.创建包,Controller包,service,dao',实体类包名
5.写springmvc,spring,mybatis的配置文件
1)springmvc配置文件
2)spring配置文件
3)mybatis主配置文件
4)数据库的属性配置文件
6.写代码,dao接口和mapper文件,service和实现类,controller,实体类。
7,写jsp页面
在pom.xml中写入SSM的依赖(略,也要加入jquery和json依赖)
写web.xml文件 (位置:webapp-WEB-INF-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">
<servlet>
<servlet-name>myweb</servlet-name>
<servlet-class >org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--自定义springmvc读取配置文件的位置-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:conf/DispatcherServlet.xml</param-value>
</init-param>
<!--tomcat启动后,就创建DispatcherServlet对象,执行init方法-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>myweb</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:conf/ApplicationContext.xml</param-value>
</context-param>
<!--注册spring的监听器-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--注册字符集过滤器-->
<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>
写index.jsp文件 (位置:webapp-index.jsp)
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>功能入口</title>
</head>
<body>
<div align="center">
<p>SSM整合的例子</p>
<img src="images/mao.jpg"/>
<table>
<tr>
<td><a href="addStudent.jsp">注册学生</a></td>
</tr>
<tr>
<td><a href="listStudent.jsp">浏览学生</a></td>
</tr>
</table>
</div>
</body>
</html>
写addStudent.jsp (位置:webapp–addStudent.jsp)
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>注册学生</title>
</head>
<body>
<div align="center">
<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>
写listStudent.jsp (位置:webapp–listStudent.jsp)
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>查询学生,使用ajax</title>
<!--引入jquery文件-->
<script type="text/javascript" src="js/jquery-3.5.1.js"></script>
<script type="text/javascript">
function load(){
$.ajax({
url:"student/queryStudent.do",
type:"get",
dataType:"json",
success:function (data) {
// 清除旧的数据,不然每次点击按钮,就会追加
$("#info").html("")
$.each(data,function (i,n){
$("#info").append("<tr>")
.append("<td>"+n.id+"<td>")
.append("<td>"+n.name+"<td>")
.append("<td>"+n.age+"<td>")
.append("</tr>")
})
}
})
}
<!--第一个function是入口函数-->
$(function (){
//在当前页面dom对象加载后,执行ajax请求
load()
})
</script>
</head>
<body>
<div align="center">
<table>
<thead>
<tr>
<td>学号</td>
<td>姓名</td>
<td>年龄</td>
</tr>
</thead>
<tbody id="info">
</tbody>
</table>
</div>
</body>
</html>
写结果页面result.jsp (位置:WEB-INF–jsp–result.jsp)
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
结果页面,注册结果:${tips}
</body>
</html>
写Controller层(SpringMVC)的配置文件DispatcherServlet.xml (位置:resources–conf–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="controller"></context:component-scan>
<!--视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
<mvc:annotation-driven></mvc:annotation-driven>
<!--
1.响应ajax请求,返回jason
2.解决静态资源访问问题。
-->
</beans>
写Service层(Spring)的配置文件ApplicationContext.xml (位置:resources–conf–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:property-placeholder location="classpath:conf/jdbc.properties"></context:property-placeholder>
<!--声明数据源,连接数据库-->
<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>
<!--SqlSessionFactoryBean创建SqlSessionFactory-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="datasource"/>
<property name="configLocation" value="classpath:conf/mybatis.xml"/>
</bean>
<!--声明mybatis的扫描器,创建dao对象-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
<property name="basePackage" value="dao"/>
</bean>
<!--声明service的注解@service所在的包名位置-->
<context:component-scan base-package="service"/>
<!--事务配置:注解的配置;aspectj的配置-->
</beans>
写Dao层(MyBatis)的配置文件mybatis-config.xml (位置:resources–conf–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>
<!--设置别名-->
<typeAliases>
<!--name:实体类所在包名-->
<package name="domain"/>
</typeAliases>
<mappers>
<!--
name:是包名,这个包中的所有mapper.xml一次都能加载
使用package要求:
1.mapper文件名称必须和dao接口名完全一样,包括大小写
2.mapper文件位置和dao接口必须在同一目录
-->
<package name="dao"/>
</mappers>
</configuration>
写jdbc.properties文件 (位置:resources–conf–jdbc.properties)
jdbc.url=jdbc:mysql://localhost:3306/springdb?serverTimezone=UTC
jdbc.username=root
jdbc.password=admin