Mybatis總結(2) 優化配置檔案

2021-07-23 04:13:39 字數 757 閱讀 4563

連線資料庫的配置單獨放在乙個properties檔案中

原來關於資料庫的連線資訊都在conf.xml中,放在乙個單獨的properties檔案會更好。

driver=com.mysql.jdbc.driver

url=jdbc:mysql://localhost:3306/mybatis

name=root

password=

2.在mybatis的conf.xml檔案中引用db.properties檔案

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

resource="db.properties"/>

default="development">

id="development">

type="jdbc" />

type="pooled">

name="driver"

value="$" />

name="url"

value="$" />

name="username"

value="$" />

name="password"

value="$" />

datasource>

environment>

environments>

configuration>

3.設定別名我暫時不推薦

開始可以多練練。

apache2優化配置總結

ubuntu server 12.04 lts 配置檔案 一般在 etc apache2 下 apache2.conf conf.d secrity default.conf 下面我寫到的配置引數都存在在這幾個檔案中 1.hostnamelookups off 網域名稱查詢 開啟這個會增加ap的負擔...

mybatis 基本配置2

sqlmapconfig.xml中配置的內容和順序如下 properties 屬性 settings 全域性配置引數 typealiases 型別別名 typehandlers 型別處理器 objectfactory 物件工廠 plugins 外掛程式 environments 環境集合屬性物件 e...

Mybatis的xml配置簡單優化

我們可以通過幾個簡單的方法對開發中的 進行優化,如在專案的mybatis配置檔案config.xml中 配置properties,配置setting,配置別名。以達到簡化 優化效能 便於維護的目的。配置屬性 properties 方法一 在xml中配置 方法二 在外部檔案 db.properties...