属性文件: resources - > db.properties
driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8
username=root
password=123456
mybatis-config.xml 遵循规则,属性要放在第一位
<configuration>
<properties resource="db.properties"/>
<typeAliases>
<!-- 实体类少的时候用,可以DIY -->
<!-- <typeAlias type="com.feijian.pojo.User" alias="User"/>-->
<!-- 实体类比较多是,可以用package,但名字不能自己定义,或者用注释做别名定义 -->
<package name="com.feijian.pojo"/>
</typeAliases>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"/>
别名放第三位,setting 第二位,如无setting ,别名放在第二位即可。
别名有两种。见上。
标签:10,jdbc,lesson5,mysql,别名,setting,2023,Mybatis,属性 From: https://www.cnblogs.com/RUI2022/p/17203787.html