1、环境搭建
(1)环境:
- IDEA
- MySQL 5.7.19
- Tomcat 9
- Maven 3.6
要求:
- 需要熟练掌握MySQL数据库,Spring,JavaWeb及MyBatis知识,简单的前端知识;
(2)系统设计
(3)数据库环境
创建一个存放书籍数据的数据库表CREATE DATABASE `ssmbuild`;USE `ssmbuild`;DROP TABLE IF EXISTS `books`;CREATE TABLE `books` (`bookID` INT(10) NOT NULL AUTO_INCREMENT COMMENT '书id',`bookName` VARCHAR(100) NOT NULL COMMENT '书名',`bookCounts` INT(11) NOT NULL COMMENT '数量',`detail` VARCHAR(200) NOT NULL COMMENT '描述',KEY `bookID` (`bookID`)) ENGINE=INNODB DEFAULT CHARSET=utf8INSERT INTO `books`(`bookID`,`bookName`,`bookCounts`,`detail`)VALUES(1,'Java',1,'从入门到放弃'),(2,'MySQL',10,'从删库到跑路'),(3,'Linux',5,'从进门到进牢');
2、基本环境搭建
(1)创建maven项目,添加web支持
(2)pom.xml依赖导入
依赖:junit、数据库驱动、连接池、Servlet、jsp、mybatis、mybatis-spring、spring、spring-webmvc、spring-jdbc、aspectjweaver、lombok 静态资源导出问题
<?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.learn</groupId><artifactId>ssmbuild</artifactId><version>1.0-SNAPSHOT</version><!--依赖问题--><!--junit,数据库驱动,连接池,Servlet,jsp,mybatis,mybatis-spring,spring--><dependencies><!--Junit--><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.12</version></dependency><!--数据库驱动--><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.47</version></dependency><!-- 数据库连接池 c3p0--><dependency><groupId>com.mchange</groupId><artifactId>c3p0</artifactId><version>0.9.5.2</version></dependency><!--Servlet - JSP --><dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.5</version></dependency><dependency><groupId>javax.servlet.jsp</groupId><artifactId>jsp-api</artifactId><version>2.2</version></dependency><dependency><groupId>javax.servlet</groupId><artifactId>jstl</artifactId><version>1.2</version></dependency><!--Mybatis--><dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.5.2</version></dependency><dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>2.0.2</version></dependency><!--Spring--><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>5.1.9.RELEASE</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>5.1.9.RELEASE</version></dependency><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>1.9.6</version></dependency><!--lombok--><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.16.10</version></dependency></dependencies><!--静态资源导出问题--><build><resources><resource><directory>src/main/java</directory><includes><include>**/*.properties</include><include>**/*.xml</include></includes><filtering>false</filtering></resource><resource><directory>src/main/resources</directory><includes><include>**/*.properties</include><include>**/*.xml</include></includes><filtering>false</filtering></resource></resources></build></project>
「项目结构」——「Artifacts」——「WEB-INF」——「新建lib文件」——导入依赖
(3)Mybatis层编写
a、IDEA关联数据库
b、数据库配置文件 database.properties
jdbc.driver=com.mysql.jdbc.Driver# 如果使用mysql8.0+ ,需要增加一个时区的配置; &serverTimezone=Asia/Shanghaijdbc.url=jdbc:mysql://localhost:3306/ssmbuild?useSSL=true&useUnicode=true&characterEncoding=utf8jdbc.username=rootjdbc.password=root
c、编写数据库对应的实体类 com.learn.pojo.Books
package com.learn.pojo;import lombok.AllArgsConstructor;import lombok.Data;import lombok.NoArgsConstructor;@Data@AllArgsConstructor@NoArgsConstructorpublic class Books {private int bookID;private String bookName;private int bookCounts;private String detail;}
d、mybatis-config.xml的配置
需要配置的是:日志、别名、mapper 数据源的配置交给spring去做
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""http://mybatis.org/dtd/mybatis-3-config.dtd"><configuration><!--日志--><settings><setting name="logImpl" value="STDOUT_LOGGING"/></settings><!--配置数据源,交给spring去做--><!--别名--><typeAliases><package name="com.learn.pojo"/></typeAliases><!--mapper映射--><mappers><mapper class="com.learn.dao.BookMapper"/></mappers></configuration>
e、编写Dao层的 BookMapper接口
package com.learn.dao;import com.learn.pojo.Books;import org.apache.ibatis.annotations.Param;import java.util.List;public interface BookMapper {//增加一个Bookint addBook(Books book);//根据id删除一个Bookint deleteBookById(@Param("bookID") int id);//更新Bookint updateBook(Books books);//根据id查询,返回一个BookBooks queryBookById(@Param("bookID") int id);//查询全部Book,返回list集合List<Books> queryAllBook();//通过书名查询书籍Books queryBookByName(@Param("bookName") String bookName);}
f、编写接口对应的Mapper.xml文件。需要导入MyBatis的包;
<?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""http://mybatis.org/dtd/mybatis-3-mapper.dtd"><mapper namespace="com.learn.dao.BookMapper"><!--增加一个Book--><insert id="addBook" parameterType="Books">insert into ssmbuild.books(bookName, bookCounts, detail)values (#{bookName}, #{bookCounts}, #{detail})</insert><!--根据id删除一个Book--><delete id="deleteBookById" parameterType="int">deletefrom ssmbuild.bookswhere bookID = #{bookID}</delete><!--更新Book--><update id="updateBook" parameterType="Books">update ssmbuild.booksset bookName = #{bookName},bookCounts = #{bookCounts},detail = #{detail}where bookID = #{bookID}</update><!--根据id查询,返回一个Book--><select id="queryBookById" resultType="Books">select *from ssmbuild.bookswhere bookID = #{bookID}</select><!--查询全部Book--><select id="queryAllBook" resultType="Books">SELECT *from ssmbuild.books</select><!--根据书名查询,返回一个Book--><select id="queryBookByName" resultType="Books">select *from ssmbuild.bookswhere bookName = #{bookName}</select></mapper>
g、编写Service层的接口BookService和实现类BookServiceImpl
接口
BookService:底下需要去实现,调用dao层。与dao接口代码相同,
package com.learn.service;import com.learn.pojo.Books;import java.util.List;//BookService:底下需要去实现,调用dao层public interface BookService {//增加一个Bookint addBook(Books book);//根据id删除一个Bookint deleteBookById(int id);//更新Bookint updateBook(Books books);//根据id查询,返回一个BookBooks queryBookById(int id);//查询全部Book,返回list集合List<Books> queryAllBook();Books queryBookByName(String bookName);}
实现类
//调用dao层的操作,设置一个set接口,方便Spring管理private BookMapper bookMapper;
通过调用mapper.xml的方法实现service接口的方法 然后Controller调用service层方法完成业务
package com.learn.service;import com.learn.dao.BookMapper;import com.learn.pojo.Books;import com.learn.service.BookService;import java.util.List;public class BookServiceImpl implements BookService {//调用dao层的操作,设置一个set接口,方便Spring管理private BookMapper bookMapper;public void setBookMapper(BookMapper bookMapper) {this.bookMapper = bookMapper;}public int addBook(Books book) {return bookMapper.addBook(book);}public int deleteBookById(int id) {return bookMapper.deleteBookById(id);}public int updateBook(Books books) {return bookMapper.updateBook(books);}public Books queryBookById(int id) {return bookMapper.queryBookById(id);}public List<Books> queryAllBook() {return bookMapper.queryAllBook();}public Books queryBookByName(String bookName) {return bookMapper.queryBookByName(bookName);}}
(4)Spring层
a、配置Spring整合MyBatis,我们这里数据源使用c3p0连接池;
dbcp:半自动化操作,不能自动连接c3p0:自动化操作(自动化的加载配置文件,并且可以自动设置到对象中)druid:hikari:
b、我们去编写Spring整合Mybatis的相关的配置文件——spring-dao.xml
1.关联数据库配置文件 2.连接池 3.sqlSessionFactory,绑定mybatis的配置文件 4.扫描dao包,注入sqlSessionFactory
<?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/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttps://www.springframework.org/schema/context/spring-context.xsd"><!--1.关联数据库配置文件--><context:property-placeholder location="classpath:database.properties"/><!--2.连接池dbcp:半自动化操作,不能自动连接c3p0:自动化操作(自动化的加载配置文件,并且可以自动设置到对象中)druid:hikari:--><bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"><property name="driverClass" value="${jdbc.driver}"/><property name="jdbcUrl" value="${jdbc.url}"/><property name="user" value="${jdbc.username}"/><property name="password" value="${jdbc.password}"/><!-- c3p0连接池的私有属性 --><property name="maxPoolSize" value="30"/><property name="minPoolSize" value="10"/><!-- 关闭连接后不自动commit --><property name="autoCommitOnClose" value="false"/><!-- 获取连接超时时间 --><property name="checkoutTimeout" value="10000"/><!-- 当获取连接失败重试次数 --><property name="acquireRetryAttempts" value="2"/></bean><!--3.sqlSessionFactory--><bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"><property name="dataSource" ref="dataSource"/><!--绑定mybatis的配置文件--><property name="configLocation" value="classpath:mybaits-config.xml"/></bean><!--4.配置dao接口扫描包,动态的实现了dao接口可以注入到spring容器中--><bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"><!--注入sqlSessionFactory--><property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/><!--要扫描的dao包--><property name="basePackage" value="com.learn.dao"/></bean></beans>
c、Spring整合service层——spring-service.xml
1.扫描service的包 2.将我们所有的业务类注入到spring,可以通过配置,也可以通过注解实现 3.声明式事务配置 4.aop事务支持 5.配置事务切入
<?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:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttps://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttps://www.springframework.org/schema/aop/spring-aop.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd"><!--1.扫描service的包--><context:component-scan base-package="com.learn.service"/><!--2.将我们所有的业务类注入到spring,可以通过配置,也可以通过注解实现--><!--注解就是@service @autowired--><bean id="BookServiceImpl" class="com.learn.service.BookServiceImpl"><property name="bookMapper" ref="bookMapper"/></bean><!--3.声明式事务配置--><bean id="TransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"><!--注入数据源--><property name="dataSource" ref="dataSource"/></bean><!--4.aop事务支持--><!--结合AOP实现事务的织入--><!--配置事务的传播特性: new propagation= --><tx:advice id="txAdvice" transaction-manager="TransactionManager"><tx:attributes><!-- <tx:method name="add" propagation="REQUIRED"/>--><!-- <tx:method name="delete" propagation="REQUIRED"/>--><!-- <tx:method name="update" propagation="REQUIRED"/>--><!-- <tx:method name="query" read-only="true"/>--><tx:method name="*" propagation="REQUIRED"/></tx:attributes></tx:advice><!--5.配置事务切入--><aop:config><aop:pointcut id="txPointCut" expression="execution(* com.learn.dao.*.*(..))"/><aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/></aop:config></beans>
Spring层搞定!再次理解一下,Spring就是一个大杂烩,一个容器!对吧!
(5)SpringMVC层
a、web.xml
1、DispatcherServlet。 <一定要注意:我们这里加载的是总的配置文件,之前被这里坑了!> 2、乱码过滤 3、Session
<?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"><!--DispatcherServlet--><servlet><servlet-name>springmvc</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value></init-param><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>springmvc</servlet-name><url-pattern>/</url-pattern></servlet-mapping><!--乱码过滤--><filter><filter-name>encodingFilter</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></filter><filter-mapping><filter-name>encodingFilter</filter-name><url-pattern>/*</url-pattern></filter-mapping><!--Session--><session-config><session-timeout>15</session-timeout></session-config></web-app>
b、spring-mvc.xml
1.注解驱动 2.静态资源过滤 3.扫描controller包 4.视图解析器
<?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:mvc="http://www.springframework.org/schema/mvc"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/mvchttps://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"><!--1.注解驱动--><mvc:annotation-driven/><!--2.静态资源过滤--><mvc:default-servlet-handler/><!--3.扫描包 controller--><context:component-scan base-package="com.learn.controller"/><!--4.视图解析器--><bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"><property name="prefix" value="/WEB-INF/jsp/"/><property name="suffix" value=".jsp"/></bean></beans>
c、Spring配置整合文件,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"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><!--整合spring配置文件--><import resource="classpath:spring-dao.xml"/><import resource="classpath:spring-mvc.xml"/><import resource="classpath:spring-service.xml"/></beans>
「项目结构」——「Facets」要如下图右边所示,才算Spring配置整合文件成功
配置文件,暂时结束!Controller 和 视图层编写
3、Controller 层
package com.learn.controller;import com.learn.pojo.Books;import com.learn.service.BookService;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.beans.factory.annotation.Qualifier;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.PathVariable;import org.springframework.web.bind.annotation.RequestMapping;import java.util.ArrayList;import java.util.List;@Controller@RequestMapping("/book")public class BookController {//controller调service@Autowired@Qualifier("BookServiceImpl")private BookService bookService;//查询全部的书籍,并且返回到一个书籍展示页面@RequestMapping("/allBook")public String list(Model model) {List<Books> list = bookService.queryAllBook();model.addAttribute("list", list);return "allBook";}//跳转到增加书籍页面@RequestMapping("/toAddBook")public String toAddPaper() {return "addBook";}//添加书籍的请求@RequestMapping("/addBook")public String addPaper(Books books) {bookService.addBook(books);return "redirect:/book/allBook"; //重定向}//跳转到修改页面@RequestMapping("/toUpdate")public String toUpdate(int id,Model model) {Books book = bookService.queryBookById(id);model.addAttribute("QBook",book);return "updateBook";}//修改修改页面@RequestMapping("/updateBook")public String updateBook(Books book) {System.out.println("update"+book);bookService.updateBook(book);return "redirect:/book/allBook";}//删除书籍@RequestMapping("/deleteBook/{bookID}")public String deleteBook(@PathVariable("bookID") int id){bookService.deleteBookById(id);return "redirect:/book/allBook";}//查询书籍@RequestMapping("/queryBook")public String queryBook(String queryBookName,Model model){Books books = bookService.queryBookByName(queryBookName);List<Books> list =new ArrayList<Books>();if (books==null){list=bookService.queryAllBook();model.addAttribute("error","未查到");}else {list.add(books);}model.addAttribute("list", list);return "allBook";}}
4、JSP页面
index.jsp——首页
<%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head><title>首页 </title><style>a{text-decoration: none;color: black;font-size: 18px;}h3{width:180px;height: 38px;margin: 100px auto;text-align: center;line-height: 38px;background: aqua;border-radius: 5px;}</style></head><body><h3><a href="${pageContext.request.contextPath}/book/allBook">进入书籍页面</a></h3></body></html>
allBook.jsp——展示所有书籍页面
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head><title>书籍展示页面</title><!-- 新 Bootstrap 核心 CSS 文件 --><link href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"><!-- jQuery文件。务必在bootstrap.min.js 之前引入 --><script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script><!-- 最新的 Bootstrap 核心 JavaScript 文件 --><script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script></head><body><div class="container"><div class="row clearfix "><div class="clo-md-12 column"><div class="page-header"><h1><small>书籍列表---显示所有书籍</small></h1></div></div><div class="row"><div class="col-md-4 column"><a class="btn btn-primary" href="${pageContext.request.contextPath}/book/toAddBook">新增书籍</a><a class="btn btn-primary" href="${pageContext.request.contextPath}/book/allBook">显示所有书籍</a></div><div class="col-md-8 column"><%--查询书籍--%><form action="${pageContext.request.contextPath}/book/queryBook" method="post" class="form-inline" style="float: right"><span style="color: red;font-weight: bold">${error}</span><input type="text" name="queryBookName" class="form-control" placeholder="请输入要查询的书籍名称"><input type="submit" class="btn btn-primary " value="查询"></form></div></div></div><div class="row"><div class="col-md-12 column"><table class="table table-hover table-striped"><thead><tr><th>书籍编号</th><th>书籍名称</th><th>书籍数量</th><th>书籍详情</th><th>操作</th></tr></thead><%--从list中遍历出来:foreach--%><tbody><c:forEach var="book" items="${list}"><tr><td>${book.bookID}</td><td>${book.bookName}</td><td>${book.bookCounts}</td><td>${book.detail}</td><td><a href="${pageContext.request.contextPath}/book/toUpdate?id=${book.bookID}">修改</a> | <a href="${pageContext.request.contextPath}/book/deleteBook/${book.bookID}">删除</a></td></tr></c:forEach></tbody></table></div></div></div></body></html>
addBook.jsp——添加书籍界面
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head><title>添加书籍页面</title><!-- 新 Bootstrap 核心 CSS 文件 --><link href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"><!-- jQuery文件。务必在bootstrap.min.js 之前引入 --><script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script><!-- 最新的 Bootstrap 核心 JavaScript 文件 --><script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script></head><body><div class="container"><div class="row clearfix "><div class="clo-md-12 column"><div class="page-header"><h1><small>新增书籍</small></h1></div></div></div><form action="${pageContext.request.contextPath}/book/addBook" method="post"><div class="form-group"><label >书籍名称:</label><input type="text" name="bookName" class="form-control" required></div><div class="form-group"><label >书籍数量:</label><input type="text" name="bookCounts" class="form-control" required></div><div class="form-group"><label >书籍描述</label><input type="text" name="detail" class="form-control" required></div><div class="form-group"><input type="submit" class="form-control" value="添加" ></div></form></div></body></html>
update.jsp——修改书籍界面
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %><%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head><title>修改书籍页面</title><!-- 新 Bootstrap 核心 CSS 文件 --><link href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"><!-- jQuery文件。务必在bootstrap.min.js 之前引入 --><script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script><!-- 最新的 Bootstrap 核心 JavaScript 文件 --><script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script></head><body><div class="container"><div class="row clearfix "><div class="clo-md-12 column"><div class="page-header"><h1><small>修改</small></h1></div></div></div><form action="${pageContext.request.contextPath}/book/updateBook" method="post"><%--出现的问题,我们提交了修改的sql请求,但是修改失败可能是事务问题看一下sql语句能否执行成功前段传递隐藏域--%><input type="hidden" name="bookID" value="${QBook.bookID}"><div class="form-group"><label>书籍名称:</label><input type="text" name="bookName" class="form-control" value="${QBook.bookName}" required></div><div class="form-group"><label>书籍数量:</label><input type="text" name="bookCounts" class="form-control" value="${QBook.bookCounts}" required></div><div class="form-group"><label>书籍描述</label><input type="text" name="detail" class="form-control" value="${QBook.detail}" required></div><div class="form-group"><input type="submit" class="form-control" value="修改"></div></form></div></body></html>
