使用druid连接presto 怎么设置时区

a6b3iqyw  于 4个月前  发布在  Druid
关注(0)|答案(1)|浏览(57)

直接使用 PrestoConnection 时是通过设置的connection.setTimeZoneId("Asia/Shanghai");

我尝试在jdbc:presto://x.x.x.x:28050?serverTimezone=Asia/Shanghai 会报错

ejk8hzay

ejk8hzay1#

最后是在spring项目中设置全局时区解决的
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Shanghai"));

相关问题