springmvc(二) ssm框架整合的各類配置

      ssm:springmvc、spring、mybatis這三個框架的整合,有耐心一步步走。html

                        --WZY前端

 

1、SSM框架整合java

      1.一、整合思路mysql

        從底層整合起,也就是先整合mybatis與spring,而後在編寫springmvc。web

      1.二、開發需求spring

        查詢商品列表(從數據庫中查詢)sql

      1.三、建立web工程數據庫

          

        如今ssm的工程建立就有區別於原先的dao、service、web這樣的三層目錄了,如今是mapper、service、controller這樣的目錄,mapper就至關於之前的dao、controller至關於之前的web,改變了名稱而已。不要所以看不懂了。apache

      1.四、添加jar包spring-mvc

        這種jar包,上網直接百度ssm整合的jar包便可

        數據庫驅動、Mybatis的核心、依賴包、Mybatis與spring的整合包、Dbcp鏈接池包、Spring的包(包括springmvc的包)、Aop的依賴包、Jstl包、Common-logging包   

          

      1.五、開始整合mapper(mybatis與spring的整合)

        詳細的整合思路講解:mybatis與spring的整合 這裏我直接上代碼。步驟

        1.5.一、SqlMapConfig.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>
        <!-- 別名爲類名首字母大小寫均可以 -->
        <package name="com.wuhao.ms.domain"/>
    </typeAliases>
    <!-- 原先這裏還有鏈接數據庫的一些配置,與spring整合後,都交由spring來管理 -->

    <!-- 加載mapper映射文件,使用通用的配置 -->    
<mappers>
    <package name="com.wuhao.ssm.mapper"/>
</mappers>
</configuration>
SqlMapConfig.xml

 

        1.5.二、applicationContext-dao.xml的配置

               

          這裏須要注意一點,在指定mybatis的全局配置文件的路徑的時候,也就是在value="classpath:SqlMapConfig.xml"時,若是在建立的config的配置文件目錄下還有層級目錄,則這裏須要加上,好比,config下面分爲了mybatis和spring,那麼這裏就須要寫value="classpath:mybatis/SqlMapConfig.xml",看根據你本身的需求來編寫

            

<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"
    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-3.2.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd 
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
    <!-- 引用java配置文件 -->
    <context:property-placeholder location="classpath:db.properties" />

    <!-- 配置數據源 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="${db.driver}" />
        <property name="url" value="${db.url}" />
        <property name="username" value="${db.username}" />
        <property name="password" value="${db.password}" />
        <property name="maxActive" value="10" />
        <property name="maxIdle" value="5" />
    </bean>
    
    <!-- 配置SqlSessionFactory -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 指定mybatis的全局配置文件的路徑 -->
        <property name="configLocation" value="classpath:SqlMapConfig.xml"></property>
        <!-- 數據源 -->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
     <!-- 批量配置,這裏是批量配置mapper代理,那麼下面就不用配置id了。
        咱們想要獲取哪一個mapper代理用這個格式:類名首字母小寫
     -->
     <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="basePackage" value="com.wuhao.ssm.mapper"></property>
        <!-- 默認不須要配置,可是若是有多個數據源的配置,那麼就須要配置此項 -->
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean> 
    
</beans>
applicationContext-dao.xml

               

        1.5.三、db.properties配置

            

db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8
db.username=root
db.password=root
db.properties

 

        1.5.四、開發mapper,將逆向工程生成的添加進來

            

          注意:Mapper開發時,先要根據需求進行分析,是否匹配逆向工程生成的代碼,若是匹配成功,則不須要再開發mapper;若是不匹配,再去擴展一個新的mapper接口和mapper映射文件來處理該需求,通俗點講,就是逆向工程生成的mapper接口中的定義的功能是否知足咱們開發的需求,由於逆向工程生成的都是對於單表進行操做的,而咱們有時候須要的是更復雜的查詢,因此若是有須要咱們在本身建立mapper接口和mapper映射文件,其實就是擴展功能。

 

      1.六、整合service

        添加applicationContext-service.xml配置文件,用來處理事務,

        applicationContext-service.xml:若是不懂其中的代碼的意思,就查看以前講解spring管理事務的文章。這裏直接複製粘帖便可,修改一些包名稱等

          

<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"
    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-3.2.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd 
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
        
    <!-- 組件掃描service -->
    <context:component-scan base-package="com.wuhao.ssm.service"></context:component-scan>
    <!-- 配置事務管理器 -->
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <!-- 配置數據源 -->
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 配置通知 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <!-- 傳播特性 -->
            <tx:method name="save*" propagation="REQUIRED" />
            <tx:method name="add*" propagation="REQUIRED" />
            <tx:method name="insert*" propagation="REQUIRED" />
            <tx:method name="delete*" propagation="REQUIRED" />
            <tx:method name="del*" propagation="REQUIRED" />
            <tx:method name="remove*" propagation="REQUIRED" />
            <tx:method name="update*" propagation="REQUIRED" />
            <tx:method name="modify*" propagation="REQUIRED" />
            <tx:method name="find*" read-only="true" />
            <tx:method name="query*" read-only="true" />
            <tx:method name="select*" read-only="true" />
            <tx:method name="get*" read-only="true" />
        </tx:attributes>
    </tx:advice>
    
    <!-- aop -->
    <aop:config>
        <aop:advisor advice-ref="txAdvice" pointcut="execution(* com.wuhao.ssm.service.*.*(..))"/>
    </aop:config>
</beans>
applicationContext-service.xml

 

      1.七、整合controller

        也就是使用springmvc了。很是簡單。

        1.7.一、在web.xml中配置前端控制器DispatcherServlet

          

 <!-- springmvc 的前端控制器 -->
  <servlet>
      <servlet-name>springmvc</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <!-- 指定springmvc的配置文件的地址 -->
      <init-param>
          <param-name>contextConfigLocation</param-name>
          <param-value>classpath:spring/springmvc.xml</param-value>
      </init-param>
  </servlet>
  <servlet-mapping>
      <servlet-name>springmvc</servlet-name>
      <!-- 這裏有三種配置url-pattern方案
          一、*.do:後綴爲.do的請求才可以訪問到該servlet[用這個]
          二、/ :全部請求都可以訪問到該servlet(除jsp),包括靜態請求(處理會有問題,不用)
          三、/* :有問題,由於訪問jsp也會到該servlet,而訪問jsp時,咱們不須要這樣,也不用
       -->
      <url-pattern>*.do</url-pattern>
  </servlet-mapping>
web.xml中前端控制器DispatcherServlet的配置

 

        1.7.二、配置springmvc.xml

          

<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"
    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-3.2.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-3.2.xsd 
        http://www.springframework.org/schema/aop 
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 
        http://www.springframework.org/schema/tx 
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
    
    <!-- 掃描 -->
    <context:component-scan base-package="com.wuhao.ssm.controller"></context:component-scan>
    <!-- 配置處理器映射器和處理器適配器 -->
<mvc:annotation-driven />


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

</beans>
springmvc.xml

 

      1.八、整合spring配置文件      

        就是將全部的spring的配置文件都進行加載啓動。也就是在web.xml中配置spring的監聽器

              

 <!-- 加載spring容器 -->
   <!-- 配置監聽器,用於加載spring 配置文件 -->
   <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:applicationContext-*.xml</param-value>

    </context-param> 
     <listener>
         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
web.xml中配置加載spring容器和監聽器

 

      1.九、總結全部的配置以下圖

              

 

      1.十、部署測試

        1.10.一、查詢商品列表(從數據庫中查詢) 

          一、編寫service層 

            ItemsService 接口

              

            ItemsServiceImpl 實現類 不使用註解開發

              

            applicationContext-service.xml中配置該service的bean

                

 

            ItemsServiceImpl 實現類 使用註解的話,就不須要在applicationContext-service.xml中配置該service的bean了

              

          二、編寫controller層

            該層的編寫有不少中方式,我記得前一節講解過,好比實現Controller接口,使用註解等,通常直接使用註解。

            ItemsController

                  

          三、添加jsp頁面

              

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"  prefix="fmt"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>查詢商品列表</title>
</head>
<body> 
<form action="${pageContext.request.contextPath }/item/queryItem.action" method="post">
查詢條件:
<table width="100%" border=1>
<tr>
<td><input type="submit" value="查詢"/></td>
</tr>
</table>
商品列表:
<table width="100%" border=1>
<tr>
    <td>商品名稱</td>
    <td>商品價格</td>
    <td>生產日期</td>
    <td>商品描述</td>
    <td>操做</td>
</tr>
<c:forEach items="${itemsList }" var="item">
<tr>
    <td>${item.name }</td>
    <td>${item.price }</td>
    <td><fmt:formatDate value="${item.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
    <td>${item.detail }</td>
    
    <td><a href="${pageContext.request.contextPath }/editItems.do?id=${item.id}">修改</a></td>

</tr>
</c:forEach>

</table>
</form>
</body>

</html>
itemsList.jsp

 

          四、測試

              http://localhost:8080/ssm_test01/queryItems.do 以下圖,即成功

              

2、總結

      這樣,ssm的框架整合就結束了,很是簡單,按步驟,先整合mybatis與spring,而後在整合springmvc。本身練習幾遍就會了。接下來的文章就會以此爲基礎,講解springmvc的各類小功能,好比,springmvc的參數綁定、springmvc的校驗器,圖片的上傳等。

相關文章
相關標籤/搜索