程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> 淺析Mybatis 在CS法式中的運用

淺析Mybatis 在CS法式中的運用

編輯:關於JAVA

淺析Mybatis 在CS法式中的運用。本站提示廣大學習愛好者:(淺析Mybatis 在CS法式中的運用)文章只能為提供參考,不一定能成為您想要的結果。以下是淺析Mybatis 在CS法式中的運用正文


由於mybatis好使,所以簡直須要操作數據庫的時刻,我都邑應用mybatis,並且在一個正式的項目中,同時存在BS和CS的法式,都應用的Mybatis,應用的雷同mapper文件。

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>
 <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="com/isea/dao/YouMapper.xml" />
 </mappers>
</configuration>

為了避免數據庫用戶名暗碼洩露,我將XML停止雙向加密,釀成了一個字節文件,並且文件名後綴隨便。
例如:basic.data,內容部分以下:

依據XML生成Mybatis的SqlSessionFactory,代碼以下:

public class MyBatis {
 private static final String CONFIG = "basic.data";
 private SqlSessionFactory sqlSessionFactory;

 private static MyBatis instance = new MyBatis();

 private MyBatis(){
  InputStream inputStream = null;
  try {
   inputStream = getXMLIS();
   if(inputStream==null){
    throw new RuntimeException("數據庫信息設置裝備擺設掉敗!");
   }
   sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
  } finally{
   try {
    inputStream.close();
   } catch (Exception e) {
   }
  }
 }

 public static InputStream getXMLIS(){
  InputStream inputStream = null;
  try {
   //對資本停止加密,解密後處置
   BufferedReader reader = new BufferedReader(new FileReader(new File(Config.LOCATION+"/"+CONFIG)));
   String str = null;
   StringBuffer sbBuffer = new StringBuffer();
   while((str=reader.readLine())!=null){
    sbBuffer.append(str);
   }
   EncrypDES encrypDES = new EncrypDES();
   String result = encrypDES.Decryptor(sbBuffer.toString());
   inputStream = new ByteArrayInputStream(result.getBytes());
   return inputStream;
  } catch (Exception e) {
  }
  return null;
 }

 public SqlSessionFactory getSqlSessionFactory(){
  return sqlSessionFactory;
 }

 public static MyBatis getInstance(){
  return instance;
 }
}

這裡的data文件是在src下。
代碼中的EncrypDES是一個應用DES的加密解密類。
代碼中的Config.LOCATION代碼以下:

public static String getRealPath() throws Exception {
  String realPath = Config.class.getClassLoader().getResource("").getFile();
  java.io.File file = new java.io.File(realPath);
  realPath = file.getAbsolutePath();
  realPath = java.net.URLDecoder.decode(realPath, "utf-8");
  return realPath;
 }

getRealPath()前往的值賦給LOCATION.

下面代碼的重要流程:讀取data文件,解密,以流的情勢前往給mybatis.
經由過程Mybatis類便可以在法式的隨意率性處所停止挪用了。

除應用XML方法設置裝備擺設Mybatis外,還可以完整應用JAVA代碼停止設置裝備擺設,這類方法比擬費事,須要創立一個DataSource,然後用Mybatis設置裝備擺設類加載一切須要的mapper.class,這裡就不具體引見了(除非有須要)。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved