zoukankan      html  css  js  c++  java
  • 关于“Cannot resolve table 'user'”报错及运行日志报java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone的问题解决

      springboot+vue建立映射时,后端引用@Table(name=“user”) 来对应表名 user,但引用后报错“Cannot resolve table 'user'”,尝试了多篇博主的博文后,问题解决,现在总结一下各位大佬的方法:

    第一:View-->Tool windows-->Database-->Data Source-->MySQL输入Host、Port和账号密码进行测试

     

     如果报Server returns invalid timezone. Need to set 'serverTimezone' property.在URL后缀加上?serverTimezone=GMT%2B8

    测试成功后,Apply后点击OK

    第二:View-->Tool windows-->Persistence后双击“entityManagerFactory”右键选择Assign Data Sources加载刚才建的Database

     

     

     上述两步执行后还报“Cannot resolve table 'user'”的话,尝试以下操作File-->Settings-->Editor-->Code Style-->Inspections取消JPA的勾选框。

    在后端工程运行中如果报“java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.”,在application.properties配置文件的spring.datasource.url的值后边加上

    ?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC,如图:
     
     
  • 相关阅读:
    Project Chameleon Work In Progress 14
    All about Project Chameleon
    网页中图片连续滚动代码 (转)
    一点感言
    一些常用javascript代码(转)
    asp.net(c#)的一个非常非常奇怪的问题
    用javascript拦截a标签的超链接执行
    asp.net中用TreeView控件实现无限分级的好办法
    windows7 安装ez usb基本驱动
    管道编程
  • 原文地址:https://www.cnblogs.com/yinze/p/13894069.html
Copyright © 2011-2022 走看看