【札记】spring+mybatiss+c3p0整合访问MySQL的URL配置(有批量修改信息时)


仅注明下:


 db.properties文件中 url部分在配置MySQL数据库结合mybatis时。且程序需要进行批量提交更新 操作的时候需要在url中 添加 allowMultiQueries=true 此参数。 且 参数间需要使用 & 号分隔。 配置内容具体如下:


jdbc.driver=com.mysql.jdbc.Driver
## 对于MySQL数据库 程序中如果需要使用mybatis 的批量提交更新,那么务必需要在 jdbc.url 中 加入: allowMultiQueries=true 此项,以提供批量更新
jdbc.url=jdbc:mysql://localhost:3306/dc?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
jdbc.username=xx
jdbc.password=xx



你可能感兴趣的:(【札记】spring+mybatiss+c3p0整合访问MySQL的URL配置(有批量修改信息时))