优化
1可以将配置信息单独放入db.properties文件中,然后动态引入
db.properties: k= v
<configuration>
<properties resource= " db.properties"/>
引入之后,使用${key}
db.properties:
driver=com.mysql.cj.jdbc.Driver url=jdbc:mysql://127.0.0.1:3306/commondemo?serverTimezone=UTC username=root password=root
config.xml
设置别名:
1设置单个别名
<!-- 定义单个/多个别名 -->
<typeAliases>
<!-- <typeAlias type="com.liusong.entity.Student" alias="Student" /> -->
<!-- 批量处理别名(忽略大小写),别名即为类名-->
<package name="com.liusong.entity"/>
</typeAliases>
注意:configuration中的配置有优先级先后顺序。