mybatis實戰教程三:mybatis和springmvc整合

来源:http://www.cnblogs.com/happyflyingpig/archive/2017/10/26/7721704.html
-Advertisement-
Play Games

一、搭建maven環境,引入相關jar 參考demo 二、寫web.xml 三、寫springmvc的xml文件mvc-dispatcher-servlet.xml 四、寫spring的配置文件applicationContext.xml 五、mybatis-config.xml文件 六、jdbc. ...


一、搭建maven環境,引入相關jar

參考demo

二、寫web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
         id="WebApp_ID" version="2.5">
    <display-name>Archetype Created Web Application</display-name>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <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>
        <init-param>
            <param-name>forceEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>encodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <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>
    <listener>
        <listener-class>org.springframework.web.context.ContextCleanupListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>mvc-dispatcher</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>mvc-dispatcher</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

 

三、寫springmvc的xml文件mvc-dispatcher-servlet.xml

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       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-3.0.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
    <context:component-scan base-package="com.yihaomen.mybatis" />
    <mvc:annotation-driven />
    <mvc:resources mapping="/static/**" location="/WEB-INF/static/" />
    <mvc:default-servlet-handler/>

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix">
            <value>/WEB-INF/pages/</value>
        </property>
        <property name="suffix">
            <value>.jsp</value>
        </property>
    </bean>
</beans>

 

四、寫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"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="
            http://www.springframework.org/schema/beans
            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
            http://www.springframework.org/schema/context
            http://www.springframework.org/schema/context/spring-context-3.0.xsd
            http://www.springframework.org/schema/jee
            http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
            http://www.springframework.org/schema/tx
            http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
       default-autowire="byName" default-lazy-init="false">
    <bean id="propertyConfigurer"
          class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:jdbc.properties" />
    </bean>
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
        <property name="driverClassName" value="${jdbc.driver}"/>
        <property name="url" value="${jdbc.url}"/>
        <property name="username" value="${jdbc.username}"/>
        <property name="password" value="${jdbc.password}"/>
        <!-- 配置初始化大小、最小、最大 -->
        <property name="initialSize" value="10" />
        <property name="minIdle" value="10" />
        <property name="maxActive" value="20" />
        <!-- 配置獲取連接等待超時的時間 -->
        <property name="maxWait" value="60000" />
        <!-- 配置間隔多久才進行一次檢測,檢測需要關閉的空閑連接,單位是毫秒 -->
        <property name="timeBetweenEvictionRunsMillis" value="60000" />
        <!-- 配置一個連接在池中最小生存的時間,單位是毫秒 -->
        <property name="minEvictableIdleTimeMillis" value="300000" />
        <property name="validationQuery" value="SELECT 'x'" />
        <property name="testWhileIdle" value="true" />
        <property name="testOnBorrow" value="false" />
        <property name="testOnReturn" value="false" />
        <!-- 打開PSCache,並且指定每個連接上PSCache的大小 -->
        <property name="poolPreparedStatements" value="true" />
        <property name="maxPoolPreparedStatementPerConnectionSize" value="20" />
        <!-- 配置監控統計攔截的filters,去掉後監控界面sql無法統計 -->
        <property name="filters" value="stat" />
    </bean>
    <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource" />
    </bean>

    <bean id="demoSqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!--dataSource屬性指定要用到的連接池-->
        <property name="dataSource" ref="dataSource"/>
        <!--configLocation屬性指定mybatis的核心配置文件-->
        <property name="configLocation" value="classpath:mybatis-config.xml"/>
        <property name="mapperLocations" value="classpath:com/yihaomen/mybatis/model/*.xml"/>
    </bean>
</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="cacheEnabled" value="true"/>
        <!--
           允許jdbc支持生成的鍵。需要適合的驅動。如果設置為true,
           則這個設置強制生成的鍵被使用,儘管一些驅動拒絕相容但
           仍然有效
        -->
        <setting name="useGeneratedKeys" value="true"/>
        <!--配置預設的執行器。SIMPLE執行器沒有什麼特別之初。
        REUSE執行器重用預處理語句。BATCH執行器重用語句和批量更新-->
        <setting name="defaultExecutorType" value="REUSE"/>
        <!--設置超時時間,它決定驅動等待一個資料庫相應時間-->
        <setting name="defaultStatementTimeout" value="25000"/>
    </settings>
    <!--配置別名-->
    <typeAliases>
        <typeAlias alias="Student" type="com.yihaomen.mybatis.model.Student"/>
    </typeAliases>
    <!--指定映射器路徑-->
    <mappers>
        <mapper resource="com\yihaomen\mybatis\model\Student.xml"/>
    </mappers>
</configuration>

 

 六、jdbc.properties

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/mybatis-learn?characterEncoding=utf8
jdbc.username=root
jdbc.password=tiger

maxActive= 50

 

七、DAO層

/**
 * 這裡的@MapperScan就是上面所講的Mapper掃描器中所需要的配置,會自動生成代理對象。
 * 註意,介面中的方法名稱要和對應的MyBatis映射文件中的語句的id值一樣,因為生成的
 * 動態代理,會根據這個匹配相應的Sql語句執行。另外就是方法的參數和返回值也需要註
 * 意。介面中的方法如何定義,對應的MyBatis映射文件就應該進行相應的定義。
 * 最後,標註中的userDao是用來作為Spring的Bean的id(或name)進行使用的,方便我
 * 們在Service層進行註入使用。
 */
@MapperScan
public interface ArticleMapper {
    public List<Article> getUserArticles(int userId);
}

 

 八、service層

public interface ArticleService {
    public List<Article> getArticles();
}
@Service
public class ArticleServiceImpl implements ArticleService {
    @Autowired
    private ArticleMapper articleMapper;
    public List<Article> getArticles() {
        return articleMapper.getUserArticles(1);
    }
}

 

 九、Controller層

@Controller
@RequestMapping("/user")
public class UserController {
    @Autowired
    private ArticleService articleService;
    @RequestMapping("/list")
    public ModelAndView userListAll(HttpServletRequest request, HttpServletResponse response) {
        List<Article> articleList = articleService.getArticles();
        ModelAndView mv = new ModelAndView("list");
        mv.addObject("articles", articleList);
        return mv;
    }
}

 

 

 https://gitee.com/huayicompany/springmvc-mybatis

參考:

 [1] 《mybati實戰教程》


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • .net中常會用到動態載入DLL,而DLL中可能包含各種參數、方法、窗體,如何來調用動態載入這些參數、方法、窗體呢? 在C#中,我們要使用反射,首先要搞清楚以下命名空間中幾個類的關係: System.Reflection命名空間 (1) AppDomain:應用程式域,可以將其理解為一組程式集的邏輯 ...
  • 首先討論下,有多少實際工作經驗叫老程式員呢?我這裡定義5年吧,畢竟我才在公司開發了5年多點.(真真實實的開發了5年多,極少出差,一坐一天的開發.畢業前兩年沒從事開發,不算) 我寫的博客關於具體的技術,實現的詳細說明或代碼的方式寫出來的極少.因為我擅長的只是.net,桌面開發方向,新入行的程式員web ...
  • 首先給Grid添加BindingSource,類型為BindingForForm2。或者設置Grid的DataSource為IEnumerable<BindingForForm2>。 BindingForForm2類型如下。 public class BindingForForm2 { public ...
  • 今天複習到了ADO.NET,就把他們的知識梳理總結出來 ADO.NET 是一組向 .NET 程式員公開數據訪問服務的類。提供了對各種關係數據、XML 和應用程式數據的訪問。 所有的數據訪問類位於System.Data.dll中。System.Data包含了DataSet以及其他的支持類;System ...
  • 判斷是否是同一人的方法——equals() 不能直接用per1==per2,這不是對象內容的比較而是存放對象地址的值得比較 在Person類中提供一個比較的方法compare()返回boolean值 註意this關鍵字指的是當前對象。 並且在類的內部即使是私有的屬性,也不需要使用共有的方法來調用。 ...
  • 原文地址:https://codex.wordpress.org/Rewrite_API Rewrite API(重寫規則API) Description(描述) WordPress allows theme and plugin developers to programmatically spe ...
  • Akka-http routing DSL在Route運算中拋出的異常是由內向外浮出的:當內層Route未能捕獲異常時,外一層Route會接著嘗試捕捉,依次向外擴展。Akka-http提供了ExceptionHandler類來處理Route運算產生的異常: 簡單來說ExceptionHandler類 ...
  • HTTP協議的主要特點:1.支持客戶/伺服器模式。2.簡單快速:客戶向伺服器請求服務時,只需傳送請求方法和路徑。請求方法常用的有GET、HEAD、POST。3.靈活:HTTP允許傳輸任意類型的數據對象。正在傳輸的類型由Content-Type加以標記。4.限制每次連接只處理一個請求。伺服器處理完客戶 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...