03.MyBatis學習-----全域性配置檔案_properties_引入外部配置檔案
在MyBatis全域性配置檔案中,可以通過properties來引入外部配置檔案,這裡以引入外部資料庫配置檔案為例。
1.建立dbconfig.properties配置檔案,配置資料庫的相關資訊。
jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://localhost:3306/mybatis
jdbc.username = root
jdbc.password = root
2.在MyBatis全域性配置檔案中使用properties引入外部配置檔案。
<properties resource="dbconfig.properties"></properties>
mybatis可以使用properties來引入外部properties配置檔案的內容;
resource
:引入類路徑下的資源。
url
:引入網路路徑或者磁碟路徑下的資源。
3. 修改mybatis全域性配置檔案中關於資料庫的相關配置。
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
<dataSource type="POOLED">
<property name="driver" value="${jdbc.driver}"/>
<property name="url" value="${jdbc.url}"/>
<property name="username" value="${jdbc.username}"/>
<property name="password" value="${jdbc.password}"/>
</dataSource>
</environment>
</environments>
測試示例。
相關文章
- SpringBoot基礎學習(二) SpringBoot全域性配置檔案及配置檔案屬性值注入Spring Boot
- vue專案如何全域性引入scss檔案VueCSS
- Mybatis 全域性配置檔案中typeAliases(別名)MyBatis
- vue專案中如何全域性引入scss/sass檔案VueCSS
- zt_redhat配置gfs_全域性檔案系統Redhat
- mybatis的全域性配置檔案SqlMapConfig.xml解析MyBatisSQLXML
- MyBatis學習 之 四、MyBatis配置檔案MyBatis
- nginx學習(二):初識配置檔案Nginx
- Springboot2專案配置(熱部署+war+外部tomcat+外部配置檔案)Spring Boot熱部署Tomcat
- 網頁引入外部css檔案格式演示網頁CSS
- VC++學習筆記---配置檔案(一) ini檔案和propritiesC++筆記
- Git配置配置檔案Git
- 認識 Linux 檔案屬性及檔案配置(轉)Linux
- 【Mycat】schmea.xml配置檔案學習XML
- 屬性配置檔案詳解(2)
- spring boot啟動載入外部配置檔案Spring Boot
- Laravel 學習筆記一: 專案框架和配置檔案Laravel筆記框架
- Spring YAML與屬性檔案配置檔案對比 | BaeldungSpringYAML
- 8.4.4 配置檔案
- vim配置檔案
- Maven配置檔案Maven
- 配置檔案vimrc
- MySQL配置檔案MySql
- shell配置檔案
- mysql 配置檔案MySql
- WCF配置檔案
- bash配置檔案
- pch檔案配置
- nginx配置檔案Nginx
- Nginx 配置檔案Nginx
- Maven 配置檔案Maven
- 動態引入外部javascript檔案程式碼例項JavaScript
- mongodb配置檔案常用配置項MongoDB
- apache 配置檔案的配置(轉)Apache
- mybatis入門基礎(三)----SqlMapConfig.xml全域性配置檔案解析MyBatisSQLXML
- ?從零開始學習webpack系列二(配置檔案)Web
- 有用的javascript外部檔案或其他外部檔案引用JavaScript
- 熱更新配置檔案