天天看點

SSM架構整合+案例一、整合SSM架構案例

SSM架構的整合步驟以及案例示範,我已經總結完了。

希望大家,除了一些特别固定的配置檔案外,有一個簡單的需求,都可以做到手動配置實作。這樣對大家對SSM架構會有進一步的了解,多配置幾遍會更加熟悉這個流程。

就這個簡單的整合,我已經在Eclipse上和Idea上都配過不止一遍,每一次都會有不同的問題,都會有不同的發現,隻有多練習才能知道哪裡有缺陷,勸大家不要眼高手低。。

覺得對你有幫助的,希望多多支援部落客,記得點贊關注哦~~

文章目錄

  • 一、整合SSM架構案例
    • 1、環境要求:
    • 2、資料庫環境
    • 3、基本環境搭建
    • 4、Mybatis層編寫
    • 5、Spring層
      • 5.1、 spring-dao.xml
      • 5.2、spring-service.xml
    • 6、SpringMVC層
      • 6.1、web.xml
      • 6.2、spring-mvc.xml
      • 6.3、Spring配置整合檔案,applicationContext.xml
    • 7、Controller 和 視圖層編寫
      • 7.1、編寫過程
      • 7.2、整合
    • 8、項目最終結構圖

一、整合SSM架構案例

1、環境要求:

環境:

  • IDEA
  • MySQL 5.7
  • Tomcat 8.5
  • Maven 3.6.1

要求:

  • 需要熟練掌握MySQL資料庫,Spring,JavaWeb及MyBatis知識,簡單的前端知識;

2、資料庫環境

建立一個存放書籍資料的資料庫表

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=utf8

INSERT  INTO `books`(`bookID`,`bookName`,`bookCounts`,`detail`)VALUES 
(1,'Java',1,'從入門到放棄'),
(2,'MySQL',10,'從删庫到跑路'),
(3,'Linux',5,'從進門到進牢');
           

3、基本環境搭建

  1. 建立一Maven項目! ssmbuild , 添加web的支援
  2. 導入相關的pom依賴!
<?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.biubiubiu</groupId>
    <artifactId>ssmbuild</artifactId>
    <version>1.0-SNAPSHOT</version>

    <!-- 依賴: junit,資料庫驅動,連接配接池,servlet,jsp,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>

        <!-- lombok -->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.8</version>
        </dependency>
        <!-- aop橫切 -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.7</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>
           
  1. Maven資源過濾設定(已在上邊完整pom檔案中配置,這裡再貼一下)
<!-- 靜态資源導出問題 -->
    <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>
           
  1. 建立基本結構和配置架構!
  • com.biubiubiu.pojo
  • com.biubiubiu.dao
  • com.biubiubiu.service
  • com.biubiubiu.controller
  • 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>

</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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

</beans>
           

4、Mybatis層編寫

  • 1.資料庫配置檔案 database.properties
jdbc.driver=com.mysql.jdbc.Driver
#如果是mysql8.0以上的版本,需要增加時區設定&serverTimeZone=Asia/Shanghai
jdbc.url=jdbc:mysql://localhost:3306/ssmbuild?useSSL=true&useUnicode=true&characterEncoding=utf8
jdbc.username=root
jdbc.password=123456
           
  • 2.IDEA關聯資料庫
  • 3.編寫MyBatis的核心配置檔案
<?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>

	    <!--引入日志,log4j  有時候很煩。。我這裡就關了。。-->
<!--
    <settings>
        <setting name="logImpl" value="STDOUT_LOGGING"/>
    </settings>
-->

    <!-- 配置資料源 -->
    <typeAliases>
        <package name="com.biubiubiu.pojo"/>
    </typeAliases>

    <mappers>
        <mapper class="com.biubiubiu.dao.BookMapper"/>
    </mappers>

</configuration>
           
  • 4.編寫資料庫對應的實體類 com.biubiubiu.pojo.Books

    使用lombok插件!

package com.biubiubiu.pojo;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
 * @author biubiubiu
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Books {

    private int bookID;
    private String bookName;
    private int bookCounts;
    private String detail;

}

           
  • 5.編寫Dao層的 Mapper接口!
package com.biubiubiu.dao;

import com.biubiubiu.pojo.Books;
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * @author biubiubiu
 */
public interface BookMapper {

    //增加一本書
    int addBook(Books books);

    //删除一本書
    int deleteBookById(@Param("bookID") int id);

    //更新一本書
    int updateBook(Books books);

    //查詢一本書
    Books queryBookById(@Param("bookID") int id);

    //查詢全部書籍
    List<Books> queryAllBook();

    //通過書名查找書籍
    Books queryBookByName(@Param("bookName") String bookName);

}

           
  • 6.編寫接口對應的 Mapper.xml 檔案。需要導入MyBatis的包;
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.biubiubiu.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">
        delete from ssmbuild.books where bookID=#{bookID};
    </delete>

    <!--更新Book-->
    <update id="updateBook" parameterType="Books">
        update ssmbuild.books
        set bookName = #{bookName},bookCounts=#{bookCounts},detail=#{detail}
        where bookID = #{bookID};
    </update>

    <!--根據id查詢,傳回一個Book-->
    <select id="queryBookById" resultType="Books">
		select * from ssmbuild.books
		where bookID=#{bookID};
	</select>

    <!--查詢全部Book-->
    <select id="queryAllBook" resultType="Books">
		select * from ssmbuild.books;
	</select>

    <!--搜尋Book根據名稱-->
    <select id="queryBookByName" resultType="Books">
		select * from books where bookName=#{bookName}
	</select>

</mapper>
           
  • 7.編寫Service層的接口和實作類

    接口:

package com.biubiubiu.service;

import com.biubiubiu.pojo.Books;

import java.util.List;

/**
 * @author biubiubiu
 */
public interface BookService {

    //增加一本書
    int addBook(Books books);

    //删除一本書
    int deleteBookById(int id);

    //更新一本書
    int updateBook(Books books);

    //查詢一本書
    Books queryBookById(int id);

    //查詢全部書籍
    List<Books> queryAllBook();

    //通過書名查找書籍
    Books queryBookByName(String bookName);

}


           

實作類:

package com.biubiubiu.service;

import com.biubiubiu.dao.BookMapper;
import com.biubiubiu.pojo.Books;

import java.util.List;

/**
 * @author biubiubiu
 */
public class BookServiceImpl implements BookService{
    //service調用dao層:組合dao
    private BookMapper bookMapper;
    public void setBookMapper(BookMapper bookMapper) {
        this.bookMapper = bookMapper;
    }


    @Override
    public int addBook(Books books) {
        return bookMapper.addBook(books);
    }

    @Override
    public int deleteBookById(int id) {
        return bookMapper.deleteBookById(id);
    }

    @Override
    public int updateBook(Books books) {
        return bookMapper.updateBook(books);
    }

    @Override
    public Books queryBookById(int id) {
        return bookMapper.queryBookById(id);
    }

    @Override
    public List<Books> queryAllBook() {
        return bookMapper.queryAllBook();
    }

    @Override
    public Books queryBookByName(String bookName) {
        return bookMapper.queryBookByName(bookName);
    }
}

           

OK,到此,底層需求操作編寫完畢!

5、Spring層

配置Spring整合MyBatis,我們這裡資料源使用c3p0連接配接池;

我們去編寫Spring整合Mybatis的相關的配置檔案;

5.1、 spring-dao.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
    			http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 配置整合mybatis -->
    <!-- 1.關聯資料庫配置檔案 -->
    <context:property-placeholder location="classpath:database.properties"/>


    <!-- 2.連接配接池 :
        dbcp:半自動化操作,不能自動連接配接
        c3p0:自動化操作(自動化的加載配置檔案,并且可以自動設定到對象中)
        Druid:阿裡的,公司常用
        hikari:springboot2.0自帶的
    -->
    <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"/>
        <!-- 配置綁定MyBaties全局配置檔案:mybatis-config.xml -->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>

        <!--不知道為什麼,在eclipse中沒有配置這個就沒錯,但是在idea中就會找不到xml。。-->
        <property name="mapperLocations" value="classpath:com/biubiubiu/dao/*.xml"/>
    </bean>


    <!-- 4.配置Dao接口掃描包,動态的實作了Dao接口可以注入到Spring容器中(value與上邊的id對應) -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 注入sqlSessionFactory -->
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
        <!-- 掃描要掃描的Dao包 -->
        <property name="basePackage" value="com.biubiubiu.dao"/>
    </bean>




</beans>
           

Spring整合service層

5.2、spring-service.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:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
    			http://www.springframework.org/schema/beans/spring-beans.xsd
    			http://www.springframework.org/schema/context
    			http://www.springframework.org/schema/context/spring-context.xsd
    			http://www.springframework.org/schema/aop
    			http://www.springframework.org/schema/aop/spring-aop.xsd
    			http://www.springframework.org/schema/tx
    			http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!-- 1.掃描service相關的包 -->
    <context:component-scan base-package="com.biubiubiu.service"/>

    <!-- 2.将ServiceImpl注入到IOC容器中 (依賴注入)-->
    <!--将我們的所有業務類,注入到spring,可以通過配置,或者注解實作-->
    <!--完全可以使用注解替換:@Service、@Autowired、@Qualifier或#Resource-->
    <bean id="BookServiceImpl" class="com.biubiubiu.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實作事務的織入 -->
    <!-- 配置事務通知: -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <!-- 給那些方法配置事務 -->
        <!-- 配置事務的傳播特性:new propagetion -->
        <tx:attributes>
            <tx:method name="*" propagation="REQUIRED"/>
        </tx:attributes>
    </tx:advice>

    <!-- 配置事務切入:橫切 -->
    <aop:config>
        <aop:pointcut id="txPointCut" expression="execution(* com.biubiubiu.dao.*.*(..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="txPointCut"/>
    </aop:config>




</beans>
           

Spring層搞定!再次了解一下,Spring就是一個大雜燴,一個容器!對吧!

6、SpringMVC層

6.1、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">

    <!-- 添加對springmvc的支援 -->
    <!-- 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>
           

6.2、spring-mvc.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
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 配置SpringMVC -->
    <!-- 1.開啟SpringMVC注解驅動 -->
    <mvc:annotation-driven/>

    <!-- 2.靜态資源過濾,預設serlvet配置 -->
    <mvc:default-servlet-handler/>

    <!-- 3.掃描包:controller -->
    <context:component-scan base-package="com.biubiubiu.controller"/>

    <!-- 4.視圖解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>


</beans>
           

6.3、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/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">

    <import resource="spring-dao.xml"/>
    <import resource="spring-service.xml"/>
    <import resource="spring-mvc.xml"/>
    
</beans>
           

配置檔案,暫時結束!

7、Controller 和 視圖層編寫

7.1、編寫過程

  1. BookController 類編寫 , 方法一:查詢全部書籍
@Autowired
    @Qualifier("BookServiceImpl")
    private BookService bookService;

    //查詢全部的書籍,并且傳回到一個書籍展示頁面allBook
    @RequestMapping("/allBook")
    public String list(Model model) {
        List<Books> list = bookService.queryAllBook();
        model.addAttribute("list",list);
        return "allBook";
    }

           
  1. 編寫首頁 index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<!DOCTYPE HTML>
<html>
<head>
    <title>首頁</title>
    <style type="text/css">
        a {
            text-decoration: none;
            color: black;
            font-size: 18px;
        }
        h3 {
            width: 180px;
            height: 38px;
            margin: 100px auto;
            text-align: center;
            line-height: 38px;
            background: deepskyblue;
            border-radius: 4px;
        }
    </style>
</head>
<body>

<h3>
    <a href="${pageContext.request.contextPath}/book/allBook">點選進入清單頁</a>
</h3>
</body>
</html>
           
  1. 書籍清單頁面 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>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- 引入 Bootstrap -->
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>

<div class="container">

    <div class="row clearfix">
        <div class="col-md-12 column">
            <div class="page-header">
                <h1>
                    <small>書籍清單 —— 顯示所有書籍</small>
                </h1>
            </div>
        </div>
    </div>

    <div class="row">
        <div class="col-md-4 column">
            <a class="btn btn-primary" href="${pageContext.request.contextPath}/book/toAddBook">新增</a>
        </div>
    </div>

    <div class="row clearfix">
        <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>

                <tbody>
                <c:forEach var="book" items="${requestScope.get('list')}">
                    <tr>
                        <td>${book.getBookID()}</td>
                        <td>${book.getBookName()}</td>
                        <td>${book.getBookCounts()}</td>
                        <td>${book.getDetail()}</td>
                        <td>
                            <a href="${pageContext.request.contextPath}/book/toUpdateBook?id=${book.getBookID()}">更改</a> |
                            <a href="${pageContext.request.contextPath}/book/del/${book.getBookID()}">删除</a>
                        </td>
                    </tr>
                </c:forEach>
                </tbody>
            </table>
        </div>
    </div>
</div>
           
  1. BookController 類編寫 , 方法二:添加書籍
//跳轉到添加書籍頁面
    @RequestMapping("/toAddBook")
    public String toAddPaper() {
        return "addBook";
    }

    //添加書籍的請求
    @RequestMapping("/addBook")
    public String addBook(Books books) {
        bookService.addBook(books);
        //重定向到上邊的@RequestMapping("/allBook")請求,實作請求複用
        return "redirect:/book/allBook";
    }
           
  1. 添加書籍頁面: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>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- 引入 Bootstrap -->
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">

    <div class="row clearfix">
        <div class="col-md-12 column">
            <div class="page-header">
                <h1>
                    <small>新增書籍</small>
                </h1>
            </div>
        </div>
    </div>
    <form action="${pageContext.request.contextPath}/book/addBook" method="post">
        書籍名稱:<input type="text" name="bookName"><br><br><br>
        書籍數量:<input type="text" name="bookCounts"><br><br><br>
        書籍詳情:<input type="text" name="detail"><br><br><br>
        <input type="submit" value="添加">
    </form>

</div>
           
  1. BookController 類編寫 , 方法三:修改書籍
//跳轉到修改書籍頁面
    @RequestMapping("/toUpdateBook")
    public String toUpdatePaper(int id, Model model) {
        Books books = bookService.queryBookById(id);
        model.addAttribute("books", books);
        return "updateBook";
    }

    //修改書籍的請求
    @RequestMapping("/updateBook")
    public String updateBook(Model model, Books book) {
        bookService.updateBook(book);
        Books books = bookService.queryBookById(book.getBookID());
        model.addAttribute("books", books);
        return "redirect:/book/allBook";
    }
           
  1. 修改書籍頁面 updateBook.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>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- 引入 Bootstrap -->
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">

    <div class="row clearfix">
        <div class="col-md-12 column">
            <div class="page-header">
                <h1>
                    <small>修改資訊</small>
                </h1>
            </div>
        </div>
    </div>

    <form action="${pageContext.request.contextPath}/book/updateBook" method="post">
        <input type="hidden" name="bookID" value="${book.getBookID()}"/>
        書籍名稱:<input type="text" name="bookName" value="${book.getBookName()}"/>
        書籍數量:<input type="text" name="bookCounts" value="${book.getBookCounts()}"/>
        書籍詳情:<input type="text" name="detail" value="${book.getDetail() }"/>
        <input type="submit" value="送出"/>
    </form>

</div>
           
  1. BookController 類編寫 , 方法四:删除書籍
//删除書籍
    @RequestMapping("/deleteBook/{bookID}")
    public String delete(@PathVariable("bookID")int id) {
        bookService.deleteBookById(id);
        return "redirect:/book/allBook";
    }
           
  1. BookController 類編寫 , 方法五:搜尋書籍(根據名稱查)
//查詢書籍
    @RequestMapping("/queryBook")
    public String queryBook(String queryBookName,Model model) {
        Books books = bookService.queryBookByName(queryBookName);
        List<Books> list = new ArrayList<Books>();
        list.add(books);
        if(books==null) {
            list = bookService.queryAllBook();
            model.addAttribute("error", "未查到您要查詢的書籍~");
        }

        model.addAttribute("list",list);
        return "allBook";
    }
           

7.2、整合

  1. BookController 類
package com.biubiubiu.controller;

import java.util.ArrayList;
import java.util.List;

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 com.biubiubiu.pojo.Books;
import com.biubiubiu.service.BookService;
/**
 * 視圖控制層:面向controller程式設計
 * @author 11142
 *
 */
@Controller
@RequestMapping("/book")
public class BookController {
    //controller層調service層
    @Autowired
    @Qualifier("BookServiceImpl")
    private BookService bookService;

    //查詢全部的書籍,并且傳回到一個書籍展示頁面allBook
    @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 addBook(Books books) {
        bookService.addBook(books);
        //重定向到上邊的@RequestMapping("/allBook")請求,實作請求複用
        return "redirect:/book/allBook";
    }

    //跳轉到修改書籍頁面
    @RequestMapping("/toUpdateBook")
    public String toUpdatePaper(int id, Model model) {
        Books books = bookService.queryBookById(id);
        model.addAttribute("books", books);
        return "updateBook";
    }

    //修改書籍的請求
    @RequestMapping("/updateBook")
    public String updateBook(Model model, Books book) {
        bookService.updateBook(book);
        Books books = bookService.queryBookById(book.getBookID());
        model.addAttribute("books", books);
        return "redirect:/book/allBook";
    }

    //删除書籍
    @RequestMapping("/deleteBook/{bookID}")
    public String delete(@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>();
        list.add(books);
        if(books==null) {
            list = bookService.queryAllBook();
            model.addAttribute("error", "未查到您要查詢的書籍~");
        }

        model.addAttribute("list",list);
        return "allBook";
    }


}

           
  1. index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
         pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>首頁</title>
  <style type="text/css">
    a {
      text-decoration: none;
      color: black;
      font-size: 18px;
    }
    h3 {
      width: 180px;
      height: 38px;
      margin: 100px auto;
      text-align: center;
      line-height: 38px;
      background: deepskyblue;
      border-radius: 4px;
    }
  </style>
</head>
<body>
<h3>
  <a href="${pageContext.request.contextPath}/book/allBook">進入書籍展示頁面</a>
</h3>
</body>
</html>
           
  1. allbook.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>書籍展示頁面</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 引入 Bootstrap
	CDN線上的Bootstrap不用下載下傳引用
 -->
<link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
	
<div class="container">

    <div class="row clearfix">
        <div class="col-md-12 column">
            <div class="page-header">
                <h1>
                    <small>書籍清單 —— 顯示所有書籍</small>
                </h1>
            </div>
        </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 class="form-inline" action="${pageContext.request.contextPath }/book/queryBook" method="post" style="float: right">
        		<span style="color: red;font-weight: bold">${error }</span>
        		<input type="text" name="queryBookName" class="form-control" placeholder="請輸入要查詢的書籍名稱">
				<input type="submit" value="查詢" class="btn btn-primary">
        	</form>
        </div>
    </div>

    <div class="row clearfix">
        <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中周遊出來:c:foreach -->
                <tbody>
                <!-- 可以從request域中拿requestScope.get('list'),其實也可以直接擷取list,後邊的同理 -->
                <c:forEach var="book" items="${list}"> 
                    <tr>
                        <td>${book.getBookID()}</td>
                        <td>${book.getBookName()}</td>
                        <td>${book.getBookCounts()}</td>
                        <td>${book.getDetail()}</td>
                        <td>
                            <a href="${pageContext.request.contextPath}/book/toUpdateBook?id=${book.bookID}">修改</a>
                            	&nbsp; | &nbsp;
                            <a href="${pageContext.request.contextPath}/book/deleteBook/${book.bookID}">删除</a>
                        </td>
                    </tr>
                </c:forEach>
                </tbody>
            </table>
        </div>
    </div>
</div>
</body>
</html>
           
  1. 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>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- 引入 Bootstrap -->
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">

    <div class="row clearfix">
        <div class="col-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>
    		<!-- 加了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>
           
  1. updateBook.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>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- 引入 Bootstrap -->
    <link href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">

    <div class="row clearfix">
        <div class="col-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執行失敗,修改未完成,因為修改需要傳id,我這裡沒有傳
    		解決:前端傳遞隐藏域
    	 --%>
    	 <input type="hidden" name="bookID" value="${books.bookID }">
    	<div class="form-group">
    		<label>書籍名稱:</label>
    		<input type="text" name="bookName" class="form-control" value="${books.bookName }" required>
    		<%-- 加了required,表單項必須填寫才能送出 --%>
    	</div>
    	<div class="form-group">
    		<label>書籍數量:</label>
    		<input type="text" name="bookCounts" class="form-control" value="${books.bookCounts }" required>
    	</div>
    	<div class="form-group">
    		<label>書籍詳情:</label>
    		<input type="text" name="detail" class="form-control" value="${books.detail }" required>
    	</div>
    	<div class="form-group">
    		<input type="submit" class="form-control" value="修改">
    	</div>
    </form>

</div>
           

配置Tomcat,運作!

到目前為止,這個SSM項目整合已經完全的OK了,可以直接運作進行測試!

8、項目最終結構圖

SSM架構整合+案例一、整合SSM架構案例

完整案例,看完必會。。

請多多支援部落客,點贊關注哦~~

繼續閱讀