数据库
首页 > 数据库> > 使用spring boot+jpa关联mysql的表出现Cannot resolve table 'XXX'

使用spring boot+jpa关联mysql的表出现Cannot resolve table 'XXX'

作者:互联网

【问题描述】

使用springboot+jpa编写POJO时@Table标签报错cannot resolve table“XXX”

【问题解决】

1、添加database

  最右侧的侧边栏,没有的话view-tool window-database

 

 中途可能缺少driver,旁边就有下载,如果还是不行的话就只能手动拷一个进去了

路径:C:\Users\PC名\AppData\Roaming\JetBrains\IntelliJIdea2020.1\jdbc-drivers 从Maven仓库整一个进去。

 

中途还还有可能出现Need to set ‘serverTimezone‘ property

 

 把设置serverTimezone为: Asia/Shanghai

 

2.配置Persistence

       

 

问题解决!

 

标签:resolve,database,jpa,spring,serverTimezone,XXX,table
来源: https://www.cnblogs.com/YFEYI/p/15233214.html