java连接数据库,jdbc的url后面一些参数的含义

ssm:

jdbc:postgresql://localhost:5432/credit?charSet=utf-8&allowMultiQueries=true

springboot:

jdbc:mysql://localhost:3306/myuser?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8

其中有设置编码格式的.

allowMultiQueries=true,支持mybatis执行多条语句;

useSSL=false,是否进行ssl连接,高版本可能需要设为true;

serverTimezone=UTC,设置时区

你可能感兴趣的:(java连接数据库,jdbc的url后面一些参数的含义)