SSM衍生的配置文件

来源:https://www.cnblogs.com/syd-fish-cat/archive/2018/06/06/9146462.html
-Advertisement-
Play Games

JDBC:(Java database connectivity) 目的:將Java語言和資料庫解耦和,使得一套Java程式能對應不同的資料庫。 方法:sun公司制定了一套連接資料庫的介面(API)。這套API叫做JDBC,JDBC的介面的實現類由資料庫廠家負責編寫,打包成jar包進行發佈,這些ja ...


JDBC(Java database connectivity)

目的:將Java語言和資料庫解耦和,使得一套Java程式能對應不同的資料庫。

方法:sun公司制定了一套連接資料庫的介面(API)。這套API叫做JDBC,JDBC的介面的實現類由資料庫廠家負責編寫,打包成jar包進行發佈,這些jar包通常被稱為“驅動”,

Jar包:mysql-connector-java-*.*.*-bin.jar

JDBC開發的六部曲:

1、  註冊驅動:

DriverManager.registerDriver(new Driver())

或者Class.forName(“com.mysql.jdbc.Driver”)這種方式將com.mysql.jdbc.Driver類裝載在JVM當中,裝載過程中會自動執行靜態代碼塊,完成驅動的註冊。

2、  獲取資料庫的連接對象

Connection conn = DriverManager.getConnection(url,user,password)

3、  獲取資料庫的操作對象

Statement state = conn.createStatement()

為了防止資料庫的註入攻擊

PreparedStatement ps = conn.createPreparedStatement()

4、  執行SQL語句

ResultSet res = ps.executeQuery(sql)

Boolean bool = ps.execute(sql)

5、  處理查詢的結果集

如果是查詢結果集,這裡採用迭代器的原理,進行遍歷

While(res.next()){}

6、  釋放資源

先關ResultSet,再關PreparedStatement   最後關Connection

res.close()

ps.close()

conn.close()

Mybatis:本是apache的一個開源項目iBatis

JDBC雖然解決了Java代碼和資料庫的解耦和問題,但是它過於繁瑣,重覆的代碼太多,因此Mybatis實際上是對JDBC的資料庫操作的封裝,它使得開發者只需要關註SQL本身。

 

 

 

1、mybatis-config.xml :mybatis的核心配置文件,配置了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>

<environments default="development">

<environment id="development">

<transactionManager type="JDBC"/>

<dataSource type="POOLED">

<property name="driver" value="${driver}"/>

<property name="url" value="${url}"/>

<property name="username" value="${username}"/>

<property name="password" value="${password}"/>

</dataSource>

</environment>

</environments>

<mappers>

<mapper resource="org/mybatis/example/BlogMapper.xml"/>

</mappers>

</configuration>

2、通過Mybatis核心配置文件mybatis-config.xml 構建SqlSessionFactory即會話工廠

String resource = "org/mybatis/example/mybatis-config.xml";

InputStream inputStream = Resources.getResourceAsStream(resource);

SqlSessionFactory sqlSessionFactory =

new SqlSessionFactoryBuilder().build(inputStream);

3、由會話工廠獲取SqlSession,操作資料庫是通過SqlSession來完成的

SqlSession session = sqlSessionFactory.openSession();

try {

// do work

} finally {

session.close();

}

4、Mybatis底層自定義了Executor執行器介面操作資料庫,Executor介面有兩個實現,一個是基本執行器、一個是緩存執行器。

5、Mapped Statement也是Mybatis一個底層封裝對象,它包裝了Mybatis配置信息及sql映射信息等。Mapper.xml文件中一個sql對應一個Mapped Statement對象,sql的id即是Mapped statement的id。

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE mapper

PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"

"http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="org.mybatis.example.BlogMapper">

<select id="selectBlog" resultType="Blog">

select * from Blog where id = #{id}

</select>

</mapper>

6、  Mapped Statement對sql執行輸入參數進行定義,包括簡單類型、HashMap和自定義pojo,Executor通過Mapped Statement在執行sql前將輸入的java對象映射至sql中,輸入參數映射就相當於jdbc編程中對PreparedStatement設置參數。

7、Mapped Statement對sql執行輸出結果進行定義,包括簡單類型、HashMap、pojo,Executor通過Mapped Statement在執行sql後將輸出結果映射至java對象中,輸出結果映射過程相當於jdbc編程中對結果的解析處理過程

Spring:是一個輕量級的框架,作為一個容器,可以管理對象的生命周期,對象與對象之間的依賴關係,可以通過配置文件來定義對象。

Spring整合mybatis:將資料庫

<?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">

       

<context:property-placeholder location="classpath:jdbc.properties"/>

 

    <!-- 數據源DataSource -->

    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"

        init-method="init" destroy-method="close">

        <property name="url" value="${mysql.url}" />

        <property name="username" value="${mysql.username}" />

        <property name="password" value="${mysql.password}" />

    </bean>

   

    <!-- 聲明SqlSessionFactoryBean,創建 SqlSessionFactory -->

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">

        <property name="configLocation" value="classpath:mybatis-config.xml" />

        <property name="dataSource" ref="dataSource" />

    </bean>

   

    <!-- 聲明mybatis的掃描器對象,目的是使用動態代理創建Dao介面的實現類對象 -->

    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">

        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />

        <property name="basePackage" value="com.syd.spring.dao"></property>

    </bean>

   

    <!-- 聲明Service對象,註入Dao -->

    <context:component-scan base-package="com.syd.spring.service" />

</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>

    <typeAliases>

        <package name="com.syd.spring.beans"/>

    </typeAliases>

    <mappers>

        <package name="com.syd.spring.dao"/>

    </mappers>

</configuration>

Springmvc是一種mvc框架,屬於spring,要有spring的jar包作為支撐。

<?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">

    <!-- 修改視圖解析器的註冊       InternalResourceViewResolver -->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <!-- 首碼視圖  prefix -->

        <property name="prefix" value="/WEB-INF/" />

        <property name="suffix" value=".jsp" />

        <!-- 尾碼   suffix-->

    </bean>

    <!-- <bean id="/user.do" class="syd.springmvc.user.UserController" /> -->

    <!-- 聲明組件掃描器 -->

    <context:component-scan base-package="syd.springmvc.user" />

    <context:component-scan base-package="syd.springmvc.exceptions" />

    <!-- 註冊註解驅動 -->

         <mvc:annotation-driven />
</beans>
web.xml文件的配置:

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">

  <display-name>25-SSM</display-name>

  <welcome-file-list>

    <welcome-file>index.html</welcome-file>

    <welcome-file>index.htm</welcome-file>

    <welcome-file>index.jsp</welcome-file>

    <welcome-file>default.html</welcome-file>

    <welcome-file>default.htm</welcome-file>

    <welcome-file>default.jsp</welcome-file>

  </welcome-file-list>

 

  <!-- 註冊Spring的監聽器ContextLoaderListener, 創建Spring的容器對象 -->

  <!-- 指定自定義配置文件的位置 -->

  <context-param>

    <param-name>contextConfigLocation</param-name>

    <param-value>classpath:conf/applicationContext.xml</param-value>

  </context-param>

  <listener>

    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

  </listener>

 

  <!-- 註冊中央調度器DispatcherServlet, 創建SpringMVC的容器對象 -->

  <servlet>

    <servlet-name>dispatcherServlet</servlet-name>

    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

   

    <!-- 指定springmvc配置文件 -->

    <init-param>

        <param-name>contextConfigLocation</param-name>

        <param-value>classpath:conf/dispatcherServlet.xml</param-value>

    </init-param>

   

    <load-on-startup>1</load-on-startup>

  </servlet>

 

  <servlet-mapping>

    <servlet-name>dispatcherServlet</servlet-name>

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

  </servlet-mapping>

 

  <!-- 註冊字元集過濾器,解決post請求亂碼的問題 -->

  <filter>

    <filter-name>characterEncodingFilter</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>

    <!-- 強制request使用encoding的值 -->

    <init-param>

        <param-name>forceRequestEncoding</param-name>

        <param-value>true</param-value>

    </init-param>

   

    <!-- 前置response使用encoding的值 -->

    <init-param>

        <param-name>forceResponseEncoding</param-name>

        <param-value>true</param-value>

    </init-param>

  </filter>

  <filter-mapping>

    <filter-name>characterEncodingFilter</filter-name>

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

  </filter-mapping>

</web-app>
SSM框架:基於spring將springmvc和mybatis進行整合
web.xml配置文件:

<?xml version="1.0" encoding="UTF-8"?>

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">

  <display-name>25-SSM</display-name>

  <welcome-file-list>

    <welcome-file>index.html</welcome-file>

    <welcome-file>index.htm</welcome-file>

    <welcome-file>index.jsp</welcome-file>

    <welcome-file>default.html</welcome-file>

    <welcome-file>default.htm</welcome-file>

    <welcome-file>default.jsp</welcome-file>

  </welcome-file-list>

  <!-- 註冊中央調度器DispatcherServlet, 創建SpringMVC的容器對象 -->

  <servlet>

    <servlet-name>dispatcherServlet</servlet-name>

    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>

    <!-- 指定springmvc配置文件 -->

    <init-param>

        <param-name>contextConfigLocation</param-name>

        <param-value>classpath:conf/dispatcherServlet.xml</param-value>

    </init-param>

   

    <load-on-startup>1</load-on-startup>

  </servlet>

  <servlet-mapping>

    <servlet-name>dispatcherServlet</servlet-name>

    <url-pattern>/</url-pattern>

  </servlet-mapping>

  <!-- 註冊字元集過濾器,解決post請求亂碼的問題 -->

  <filter>

    <filter-name>characterEncodingFilter</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>

    <!-- 強制request使用encoding的值 -->

    <init-param>

        <param-name>forceRequestEncoding</param-name>

        <param-value>true</param-value>

    </init-param>

    <!-- 強制response使用encoding的值 -->

    <init-param>

        <param-name>forceResponseEncoding</param-name>

        <param-value>true</param-value>

    </init-param>

  </filter>

  <filter-mapping>

    <filter-name>characterEncodingFilter</filter-name>

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

  </filter-mapping>

</web-app>
中央調度器(dispatcher.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配置文件:定義視圖層的對象:處理器對象, 視圖對象 -->

    <!-- 聲明組件掃描器,創建處理器對象 -->

    <context:component-scan base-package="com.bjpowernode.controllers" />

    <!-- 聲明視圖解析器 -->

    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">

        <property name="prefix" value="/WEB-INF/jsps/" />

        <property name="suffix" value=".jsp" />

    </bean>

    <!-- 聲明註解驅動 -->

    <mvc:annotation-driven />

    <!-- 處理靜態資源 -->

    <mvc:resources location="/images/" mapping="/images/**" />

    <mvc:resources location="/js/" mapping="/js/**" />

   <!-- 聲明組件掃描器,指定@Service, 創建Service對象 -->

   <context:component-scan base-package="com.bjpowernode.service" />

   <!-- 載入屬性配置文件 -->

   <context:property-placeholder location="classpath:conf/jdbc.properties"/>

   <!-- 聲明數據源DataSource, 使用druid資料庫連接池 -->

   <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">

        <property name="url" value="${jdbc.url}" />

        <property name="username" value="${jdbc.username}" />

        <property name="password" value="${jdbc.passwd}" />

   </bean>

   <!-- 聲明SqlSessionFactoryBean,創建SqlSessionFactory -->

   <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">

        <property name="dataSource" ref="dataSource" />

        <property name="configLocation" value="classpath:conf/mybatis.xml" />

   </bean>

   <!-- 聲明MyBatis的掃描器,使用動態代理,創建Dao介面的實現類對象 -->

   <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">

        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />

        <property name="basePackage" value="com.bjpowernode.dao" />

   </bean>

</beans>
mybatis.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.bjpowernode.beans" />

    </typeAliases>

    <!-- 指定sql映射文件的位置 -->

    <mappers>

        <package name="com.bjpowernode.dao"/>

    </mappers>

</configuration>
Mybatis是持久層框架,使得連接資料庫非常的簡單方便,springmvc是控制層框架,使得處理前端請求更便捷,而spring是粘合劑,將mybats和springmvc都粘合到一起,使我們處理起來更方便。

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

-Advertisement-
Play Games
更多相關文章
  • 問題 斜切角在Web設計和印刷中是相當受歡迎的樣式。它通常是在一個或多個元素的角落切一個45°的角(也就是所謂的斜切角)。特別是最近,扁平化設計的勢頭壓過了擬真設計,也使這種效果更加流行。當斜切角只存在元素的一側,並且每個都占據元素的50%高度的時候,一個箭頭的形狀產生了,這在按鈕和麵包屑導航中非常 ...
  • 開發工具(工欲善其事,必先利其器) 為了讓大家更快的融入到編程的世界中去,不被繁瑣的英文單詞所困擾,不用每天編寫很多沒有意義的重覆代碼,提升大家的開發效率,今後的課程中我們統一採用開發工具來編寫網頁 常見的開發工具如下: 記事本:提示功能較差 editplus/notepad++:提示功能較差 Dr ...
  • HTTP HTTP 1.X 1. HTTP是建立在TCP協議上的,HTTP協議的瓶頸及優化都是基於TCP協議本身的特性。 2. TCP建立連接時有三次握手 會有1.5RTT的延遲,為了避免每次請求都經歷握手待來的延遲,應用層會選擇不同策略的http長連接。 HTTP 1.0 連接不能復用以及有hea ...
  • 如何在webstorm中利用快捷鍵創建一個新的html的文件? 同時按下鍵盤上的ctrl+alt+insert(windows) 同時按下鍵盤上的ctrl+alt+n(os) h標簽系列(header1~header6) 作用:用於給文本添加標題語義 格式:<h1>xxxxx</h1> 註意點: 如 ...
  • 通過我的觀察發現hr標簽可以寫/也可以不寫/,如果不寫/那麼就是按照HTML的規範來編寫的,如果寫上,那麼就是按照XHTML規範來編寫的 但是在HTML5中,由於HTML5相容HTML和XHTML所以寫不寫都可以 那麼以後我們在做前端開發時到底寫還是不寫呢? 這個其實非常簡單,只要按照高級開發工具, ...
  • 1.img標簽中的img其實是英文image的縮寫,所以img標簽的作用,就是告訴瀏覽器我們需要顯示一張圖片 2.img標簽格式:<img src=" "> img是標簽名稱,src是屬性 其實img標簽中的src是英文source的縮寫,所以img標簽中的src就是用來告訴img標簽,需要顯示的圖 ...
  • br標簽,如何在html中換行,可以使用br標簽 1.br標簽的作用:換行 2.br標簽的格式:<br> 3.br標簽的註意點: 3.1多個br標簽可以連續使用,使用了多個br標簽就會換多少行 3.2由於HTML的作用就是用來給文本添加語義,而br標簽的語義是不另起一個段落換行,而在企業開發中一般情 ...
  • 我們在之前已經瞭解過,如果想添加一個圖片,需要寫出以下代碼: <img src="logo.png"> 其實想給src屬性賦值有兩種方式: 相對路徑就是每次都從.html文件所在的文件夾開始查找,我們稱之為相對路徑 1.1 同級 同級就是圖片和.html文件存儲在同一個文件夾中 格式: src="Q ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...