MySql的jdbc写法笔记

在学习mybatisspring整合过程中,遇到了对于mysql多个参数的处理问题,经过查询,记录总结如下:

1.在基本的jdbc中,写法如下

jdbc:mysql://localhost:3306/db_01?useSSL=false&characterEncoding=UTF-8

其中,useSSL=false为通过设置useSSL=false来显式禁用SSL

characterEncoding=UTF-8为设置字符集为UTF-8

即基本格式为:

jdbc:mysql://[host:port],[host:port].../[database] »
[?propertyName1][=propertyValue1][&propertyName2][=propertyValue2]...

多个属性之间使用&连接,属性值使用=赋值

 

2.在xml中,&需要转义符,转义符为amp;,即在xml中写法如下:

jdbc:mysql://localhost:3306/db_01?useSSL=false&characterEncoding=UTF-8

你可能感兴趣的:(mysql,mysql)