91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Mybatis自定義typeHandle的用法

發布時間:2020-08-01 11:15:18 來源:億速云 閱讀:516 作者:小豬 欄目:編程語言

這篇文章主要講解了Mybatis自定義typeHandle的用法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

一 前言

本篇文章的基礎是建立在mybatis配置

二 準備工作

2.1建表語句

CREATE TABLE `customer` (
 `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵',
 `customer_name` varchar(255) DEFAULT NULL COMMENT '顧客名稱',
 `gender` varchar(255) DEFAULT NULL COMMENT '性別',
 `telephone` varchar(255) DEFAULT NULL COMMENT '電話號碼',
 `register_time` timestamp NULL DEFAULT NULL COMMENT '注冊時間',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='顧客表';

2.2 實體

public class Customer {
  // 主鍵
  private Long id;
  // 客戶姓名
  private String customer_name;
  // 性別
  private String gender;
  // 電話
  private String telephone;
  // 注冊時間
  private Long register_time;
  // 省略 set get
 } 

三 自定義TypeHandler

自定義TypeHandler實現一個業務邏輯就是 當插入數據時可以將時間戳轉為timestamp格式;當查詢數據得時候再將數據庫中得timestamp格式時間轉為時間戳;好吧知識追尋者也是無聊透頂了做這種操作,不過易于讀者理解;

/**
 * @Author lsc
 * <p> 一個無聊的業務邏輯 輸入的是時間戳,到數據庫中的是 timestamp 格式 輸出的又是時間戳 </p>
 */
@MappedJdbcTypes(JdbcType.TIMESTAMP)
@MappedTypes(Long.class)
public class TimeStringHandler<T> extends BaseTypeHandler<T> {


  public void setNonNullParameter(PreparedStatement preparedStatement, int i, T t, JdbcType jdbcType) throws SQLException {
    // 將 時間戳轉為 LocalDateTime
    LocalDateTime localDateTime = LocalDateTime.ofInstant(Instant.ofEpochSecond((java.lang.Long) t), ZoneOffset.ofHours(8));
    // 參數設置
    System.out.println("業務邏輯1");
    preparedStatement.setString(i,localDateTime.toString());
  }

  public T getNullableResult(ResultSet resultSet, String s) throws SQLException {
    System.out.println("業務邏輯2");
    String time = resultSet.getString(s);
    LocalDateTime localDateTime = LocalDateTime.parse(time, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
    Long second = localDateTime.toEpochSecond(ZoneOffset.ofHours(8));
    return (T) second;
  }

  public T getNullableResult(ResultSet resultSet, int i) throws SQLException {
    System.out.println("業務邏輯3");
    String time = resultSet.getString(i);
    LocalDateTime localDateTime = LocalDateTime.parse(time, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
    Long second = localDateTime.toEpochSecond(ZoneOffset.ofHours(8));
    return (T) second;
  }

  public T getNullableResult(CallableStatement callableStatement, int i) throws SQLException {
    System.out.println("業務邏輯4");
    String time = callableStatement.getString(i);
    LocalDateTime localDateTime = LocalDateTime.parse(time, DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
    Long second = localDateTime.toEpochSecond(ZoneOffset.ofHours(8));
    return (T) second;
  }
}

四 mappe接口

public interface CustomerMapper {

  // 添加客戶
  int addCustomer(Customer customer);
  // 查詢客戶
  List<Customer> getCustomer();
}

五 sql映射文件

sql映射文件中在使用得字段register_time中做專門得數據類型處理,這樣不用配置到全局配置文件中,可以針對特定字段處理是個不錯得選擇;這邊實現得邏輯是兩個部分,查詢語句用于返回時將register_time使用類型處理器處理;插入語句用于將數據進入數據庫時使用register_time使用類型處理器處理。

<&#63;xml version="1.0" encoding="UTF-8" &#63;>
<!DOCTYPE mapper
    PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="com.zszxz.typehandler.mapper.CustomerMapper">

  <resultMap id="customerMap" type="customer" autoMapping="true">
    <result column="register_time" property="register_time" typeHandler="com.zszxz.typehandler.handler.TimeStringHandler"></result>
  </resultMap>

  <select id="getCustomer" resultMap="customerMap" >
    select * from `customer`
  </select>

  <insert id="addCustomer" parameterType="customer">
     insert into `customer`(
      `customer_name`,
      `gender`,
      `telephone`,
      `register_time`
     )values (
      #{customer_name},
      #{gender},
      #{telephone},
      #{register_time,javaType=Long,jdbcType=TIMESTAMP,typeHandler=com.zszxz.typehandler.handler.TimeStringHandler}
     )
  </insert>
</mapper>

六測試類

測試類 也是分為2部分,查詢和新增部分;

/**
 * @Author lsc
 * <p> </p>
 */
@RunWith(JUnit4.class)
public class TypeHandlerTest {

  SqlSession sqlSession = null;

  // @Before 會在執行測試類之前執行該方法
  @Before
  public void before() throws IOException {
    // 資源路徑 resource目錄下
    String resource = "mybatis-config.xml";
    // 配置mybatis獲得輸入流
    InputStream inputStream = Resources.getResourceAsStream(resource);
    // 創建 SqlSessionFactory
    SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
    //從 SqlSessionFactory 中獲取 SqlSession
    sqlSession= sqlSessionFactory.openSession();
  }

  @Test
  public void testInsert(){
    // 獲得mapper的形式
    CustomerMapper mapper = sqlSession.getMapper(CustomerMapper.class);
    Customer customer = new Customer();
    customer.setCustomer_name("知識追尋者");
    customer.setRegister_time(1580739214L);
    customer.setGender("男");
    customer.setTelephone("999");
    // 添加客戶
    mapper.addCustomer(customer);
    sqlSession.commit();
    sqlSession.close();
  }

  @Test
  public void testSelect(){
    // 獲得mapper的形式
    CustomerMapper mapper = sqlSession.getMapper(CustomerMapper.class);
    List<Customer> customerList = mapper.getCustomer();
    for (Customer customer :customerList){
      System.out.println(customer.getCustomer_name());
      System.out.println(customer.getRegister_time());
    }
    sqlSession.commit();
    sqlSession.close();
  }
}

七 測試插入數據

插入數據時原本register_time是時間戳,從打印得SQL參數2020-02-03T22:13:34(String)可以看見入庫時就變成了timestamp支持的格式入庫;

[DEBUG] 2020-02-03 23:39:33,018 method:org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:159)
==> Preparing: insert into `customer`( `customer_name`, `gender`, `telephone`, `register_time` )values ( &#63;, &#63;, &#63;, &#63; )
業務邏輯1
[DEBUG] 2020-02-03 23:39:33,052 method:org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:159)
==> Parameters: 知識追尋者(String), 男(String), 999(String), 2020-02-03T22:13:34(String)
[DEBUG] 2020-02-03 23:39:33,116 method:org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:159)
<== Updates: 1

八 測試查詢數據

原本數據庫中是timestamp支持的格式得時間,出來就是時間戳;

[DEBUG] 2020-02-03 23:39:00,371 method:org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:159)
==> Preparing: select * from `customer`
[DEBUG] 2020-02-03 23:39:00,410 method:org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:159)
==> Parameters:
業務邏輯2
[DEBUG] 2020-02-03 23:39:00,468 method:org.apache.ibatis.logging.jdbc.BaseJdbcLogger.debug(BaseJdbcLogger.java:159)
<== Total: 1
知識追尋者
1580739214

看完上述內容,是不是對Mybatis自定義typeHandle的用法有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

延安市| 温宿县| 安康市| 唐海县| 象州县| 昌平区| 长白| 保康县| 来凤县| 大田县| 根河市| 满城县| 得荣县| 安丘市| 包头市| 兴山县| 剑河县| 孝义市| 濉溪县| 泸州市| 杭锦后旗| 玉树县| 宁晋县| 抚松县| 封开县| 通山县| 崇明县| 木兰县| 抚宁县| 米脂县| 祥云县| 师宗县| 拉萨市| 平阳县| 澳门| 巴东县| 余姚市| 嘉黎县| 建德市| 合阳县| 资讯|