1、设计论文业绩设计格式
2、配置角色权限
连接mysql数据库发生的错误! Server returns invalid timezone. Go to 'Advanced' tab and set 'serverTimezon'
问题是:时区错误,MySQL默认的时区是UTC时区
解决办法:
1、在连接字符串增加时区设置,在配置文件连接地址之后增加 serverTimezone=UTC
connectionURL="jdbc:mysql://localhost:3306/xxx?serverTimezone=UTC"
2、在idea中修改