数据库配置文件

mybaits.properties

这是一个数据库配置文件,使用的时候需要在SqlMapConfig.xml中引用一下,引用详情在SqlMapConfig.xml中查看

jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://ip:3306/mybatisdb?characterEncoding=utf8
jdbc.username = root
jdbc.password = root
#别名
typeAliases.package = com.itheima.entity
#包扫描
mappers.package = com.itheima.mapper
``

你可能感兴趣的:(工具类)