spring mvc+myBatis配置詳解

来源:http://www.cnblogs.com/xiaomianaocc/archive/2017/04/28/6781742.html
-Advertisement-
Play Games

一、spring mvc Spring框架(框架即:編程註解+xml配置的方式)MVC是Spring框架的一大特征,Spring框架有三大特征(IOC(依賴註入),AOP(面向切麵),MVC(建模M-視圖V-控制器C)。框架一般用於團隊開發,使用分層的方式使每個人完成不同的模塊,然後再組合在一起,使 ...


一、spring mvc

Spring框架(框架即:編程註解+xml配置的方式)MVC是Spring框架的一大特征,Spring框架有三大特征(IOC(依賴註入),AOP(面向切麵),MVC(建模M-視圖V-控制器C)。框架一般用於團隊開發,使用分層的方式使每個人完成不同的模塊,然後再組合在一起,使完成項目。

以下是Spring mvc具有的能加速開發的功能列表:

  • Spring mvc中提供了一個DispatchServlet,無需額外開發
  • Spring mvc中使用基於xml的配置文件,可以編輯,而無需重新編譯應用程式
  • Spring mvc實例化控制器,並根據用戶輸入來構造Bean。
  • Spring mvc可以自動綁定用戶輸入,並正確的轉換數據類型。例如,Spring mvc能自動解析字元串,並設置float或decimal類型的屬性.
  • Spring mvc可以校驗用戶輸入,若校驗不通過,則重定向回輸入表單。輸入校驗是可選的,支持編程方式以及聲明。關於這一點,Spring mvc內置了常見的校驗器
  • Spring mvc是Spring框架的一部分,可以利用Spring提供的其他能力。
  • Spring mvc支持國際化和本地化。支持根據用戶區域顯示多國語言
  • Spring mvc支持多種視圖技術。最常見的JSP技術以及其他技術包括Velocity和FreeMarker.

配置spring mvc

1、導入Spring需要的jar 包

  

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:jdbc="http://www.springframework.org/schema/jdbc"  
    xmlns:jee="http://www.springframework.org/schema/jee" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
<!-- HandlerMapping -->
<mvc:annotation-driven/>
開啟spring mvc註解掃描,如果不基於註解:   該類需要繼承  CommandController   或者 其他很多 參見  spring幫助.我用的是基於註解的,這樣比較方便
<!-- 掃描Controller,Service -->
<context:component-scan 
    base-package="com.包名"/>
開啟組件掃描,請確保所有的控制器都在基本包下,並且不要制定一個太寬泛的基本包
</beans>
 

補充:

  第一個為開啟spring mvc註解掃描,如果不基於註解:   該類需要繼承  CommandController   或者 其他很多 參見  spring幫助.我用的是基於註解的,這樣比較方便

  第二個為開啟組件掃描

    Spring使用掃描機制來找到應用程式中所有基於註解的控制器類,為了能保證Spring你那個找到你的控制器,

    a.需要在Spring mvc中配置spring-context

    b.在<context:component-scan base-package="com.包名"/>元素中指定控制器類的基本包

基於此,在Controller中可以方便調用了,實例見最下方

 3.部署web.xml

DispatcherServlet作為Spring mvc框架中的一級控制器(前端控制器),是瀏覽器發送請求的入口

該Servlet的全稱是org.springframework.web.servlet.DispatcherServlet.

要使用這個Servlet,需要把他配置在部署描述符(web.xml),應用servlet和servlet-mapping元素如下:

相關解釋:

1、servlet元素內的on-startup元素是可選的。if存在,表示它將在應用程式啟動時就裝在servlet並調用它的init方法。else,則在該servlet的第一個請求是載入。

2、Dispatcher Servlet將會使用spring mvc諸多預設組件。此外,初始化時,它會尋找一個在應用程式下的web-INF目錄下 的配置文件,該配置文件的命名規則如下;

    servletName-servlet.xml

其中servletName是在部署描述符中的Dispatcher Servlet的名字。如圖所示,本例中的servlet-name為springmvc,則在初始化的時候會找到第二步配置的springmvc.xml文件.

3、當然springmvc.xml文件也可以放到應用程式目錄中的任何地方,<init-param></init-param>元素就是為了實現這個功能的。

其中的<param-name>不用改,而<param-value>則包含配置文件的路勁。

補充一下:(1)Spring可以通過指定classpath*:與classpath:首碼加路徑的方式從classpath載入文件,如bean的定義文件.     classpath*:的出現是為了從多個jar文件中載入相同的文件.

  classpath:只能載入找到的第一個文件

     (2) url-pattern的寫法

    1 三種寫法

    ① 完全匹配

        <url-pattern>/test/list.do</url-pattern>

    ② 目錄匹配

        <url-pattern>/test/*</url-pattern>

    ③ 擴展名匹配

      <url-pattern>*.do</url-pattern>

    2 註意事項

  • 容器會首先查找完全匹配,如果找不到,再查找目錄匹配,如果也找不到,就查找擴展名匹配。
  • 如果一個請求匹配多個“目錄匹配”,容器會選擇最長的匹配。
  • 定義”/*.action”這樣一個看起來很正常的匹配會報錯?因為這個匹配即屬於路徑映射,也屬於擴展映射,導致容器無法判斷。
  • “/” 是用來定義default servlet映射的。
  • *.do它不是一個文件,並沒有一個真正的.do文件存在,只是一個servlet映射.意思是URL里一切以.do結尾的URL都驅動servlet里設置的那個類;
    而*則是所有請求都交由servlet里設置的那個類處理!

二、MyBatis的配置和使用

  Spring與MyBatis結合,主要是由Spring管理資料庫訪問組件Dao,資料庫訪問組件主要是基於MyBatis實現,在Spring環境中使用MyBatis實現資料庫訪問組件過程是:首先需要引入一個Spring和MyBatis整合的開發包 mybatis-spring-1.2.2.jar。在Spring配置中定義SqlSessionFactoryBean,等價於SqlSessionFactory放入Spring容器管理。(不需要開發者利用手工創建SqlSessionFactory對象,需要開發者定義式註入連接信息和SQL定義的XML信息)在Spring配置中定義MapperFactoryBean,可以根據指定的Mapper介面生成一個Mapper實現類介面。需引入引入開發包:spring ioc,spring aop,dbcp,mybatis,驅動,mybatis-spring.jar。添加Spring框架的配置文件主要有applicationContext.xml,根據user表編寫實體類User,編寫UserMapper.xml(定義SQL語句),並且編寫UserMapper介面(與UserMapper.xml映射),在applicationContext.xml中配置組件SqlSessionFactoryBean,Mapper FactoryBean。最後測試MapperFactoryBean生成的UserMapperDao實例。

  MyBatis的兩個特點:

  1.MyBatis採用SQL與Entity映射,對JDBC封裝程度較輕

  2.MyBatis自己寫SQL,更具有靈活性

 配置MyBatis

(1)導入jar包

 

 (2)創建資料庫

 (3)添加MyBatis.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:jdbc="http://www.springframework.org/schema/jdbc"  
    xmlns:jee="http://www.springframework.org/schema/jee" 
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-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/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-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/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

<bean id="dbcp" 
class="org.apache.commons.dbcp.BasicDataSource">
    <property name="username" value="****">
    </property>
    <property name="password" value="***">
    </property>
    <property name="driverClassName" 
        value="com.mysql.jdbc.Driver">
    </property>
    <property name="url" 
        value="jdbc:mysql:///cloud_note">
    </property>

    <!-- <property name="url" value="jdbc:mysql://localhost:3306/cloud_note?useUnicode=true&amp;characterEncoding=utf-8"></property> -->
</bean>

<bean id="ssf" 
class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dbcp">
    </property>
    <property name="mapperLocations" 
value="classpath:com/niuniu/sql/*.xml">
    </property>
</bean>

<bean id="mapperscanner" 
class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="sqlSessionFactory" ref="ssf">
    </property>
    <property name="basePackage" 
        value="com.niuniu.dao">
    </property>
</bean>

</beans>
 

  (4)定義表所對應的實體類,如下圖所示

  

  代碼如下:

 
package com.niuniu.entity;

import java.io.Serializable;

public class User implements Serializable {
    private String cn_user_id;
    private String cn_user_name;
    private String cn_user_password;
    private String cn_user_token;
    private String cn_user_nick;
    public String getCn_user_id() {
        return cn_user_id;
    }
    public void setCn_user_id(String cnUserId) {
        cn_user_id = cnUserId;
    }
    public String getCn_user_name() {
        return cn_user_name;
    }
    public void setCn_user_name(String cnUserName) {
        cn_user_name = cnUserName;
    }
    public String getCn_user_password() {
        return cn_user_password;
    }
    public void setCn_user_password(String cnUserPassword) {
        cn_user_password = cnUserPassword;
    }
    public String getCn_user_token() {
        return cn_user_token;
    }
    public void setCn_user_token(String cnUserToken) {
        cn_user_token = cnUserToken;
    }
    public String getCn_user_nick() {
        return cn_user_nick;
    }
    public void setCn_user_nick(String cnUserNick) {
        cn_user_nick = cnUserNick;
    }
    
}
 

  (5)定義操作users表的sql映射文件UserMapping.xml

  

 
<?xml version="1.0" encoding="UTF-8" ?>  
<!DOCTYPE mapper PUBLIC "-//ibatis.apache.org//DTD Mapper 3.0//EN"      
 "http://ibatis.apache.org/dtd/ibatis-3-mapper.dtd">
<mapper namespace="com.niuniu.dao.UserDao">

<insert id="save" parameterType="com.niuniu.entity.User">
    insert into cn_user(
        cn_user_id,cn_user_name,
    cn_user_password,cn_user_token,
    cn_user_nick)
    values(#{cn_user_id},#{cn_user_name},#{cn_user_password},#{cn_user_token},#{cn_user_nick})
</insert>
<select id="findByName" parameterType="string"
resultType="com.niuniu.entity.User">
select * from cn_user
where cn_user_name=#{name}
</select>

</mapper>
 

  (6)寫Controller,進行測試。

 
@Controller//將類名前加上該註解,當spring啟動或者web服務啟動  spring會自動掃描所有包(當然,這個可以設置,見上述Springmvc的配置)

         作用:  就是告訴伺服器這個類是MVC中的C, 這個類可以接收用戶請求、處理用戶請求

@RequestMapping("/note")//這個控制類裡面可以有很多方法,哪個方法用來處理用戶請求,就在那個方法前面 加  @RequestMapping(“/xxxxx請求路徑”)

public class LoadNoteDetailController {
    @Resource//直接使用@Resource註解一個域(field)同樣是可能的。通過不暴露setter方法,代碼愈發緊湊並且還提供了域不可修改的額外益處。
//正如下麵將要證明的,@Resource註解甚至不需要一個顯式的字元串值,在沒有提供任何值的情況下,功能變數名稱將被當作預設值。
//該方式被應用到setter方法的時候,預設名是從相應的屬性衍生出來,換句話說,命名為'setDataSource'的方法被用來處理名為'dataSource'的屬性。
private NoteService noteService; @RequestMapping("/loaddetail.do")//映射到JSP的前臺頁面中ajax發佈的請求,打開相應的頁面↑ @ResponseBody ↑ public NoteResult execute(String noteId){ ↑ NoteResult result=noteService.loadDetail(noteId); ↑ return result;//當請求處理完畢後,返回值決定了該處理完畢後,用戶將跳轉到那個頁面.這個很重要。service調util } }

 

源碼來源:http://minglisoft.cn/technology

有興趣的朋友們可以前往球球哦~一起分享學習技術:2042849237


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

-Advertisement-
Play Games
更多相關文章
  • 使用 RegexString.with(string).pattern(pattern).start() + 後續操作(matches,find或者是replace) 源碼 示例 ...
  • 經過了一段時間的學習,慢慢的計入到了python的列表、元組的學習了,這一部分是後面函數的基礎,這也是無論何種語言都要學習的部分。其實過程很辛苦,不過對於小白的我不見得是一件壞事,反正都看不懂,倒也沒有什麼心理負擔。想想學成後的一覽眾山小,此時的積累,便是每一步都要堅實的。 列表、元組 列表是我們最 ...
  • 函數, get()與setdefault(), lambda表達式,三元運算, 遍歷list與dict的方法. ...
  • 對編程語言比較熟悉的朋友,應該知道“反射”這個機制。Python作為一門動態語言,當然不會缺少這一重要功能。然而,在網路上卻很少見到有詳細或者深刻的剖析論文。下麵結合一個web路由的實例來闡述python的反射機制的使用場景和核心本質。 一、前言 在上面的代碼中,我們必須區分兩個概念,f1和“f1" ...
  • 讀這本書,前後算作一次半吧。第一次讀時,到了第八課的形態學處理部分時荒棄了,當時也沒有養成做筆記的習慣,導致最後不了了之。後來在去年12月份左右重新撿起這本書,並且堅持在閱讀的同時多看源碼多做筆記,最終於4月底完成閱讀與學習。 目前我對這本書的看法是,著重介紹灰度圖像處理的基礎知識,包括基本的bmp ...
  • 1.為項目添加POI POI官網鏈接 點進去之後下載(上邊的是編譯好的類,下邊的是源代碼) 解壓文件夾,把下麵三個文件複製到WebComtent>WEB-INF>lib文件夾下 再把這三個文件複製到Tomcat的lib文件夾下,否則Tomcat會因為找不到類而報錯(這個地方鬱悶了一上午) 讀取“.x ...
  • hasattr(object, name) 本函數是用來判斷對象object的屬性(name表示)是否存在。如果屬性(name表示)存在,則返回True,否則返回False。參數object是一個對象,參數name是一個屬性的字元串表示。 輸出結果: getattr(object, name[,de ...
  • 1、request.from獲取POST表單數據 # hello.py # form.html # home.html #signin-ok.html 2、使用Flask-WTF擴展 # hello.py # index.py 附:共同的基模板 # base.html ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...