IDEA修改提醒的内容 Cannot resolve table '' Inspection info

在IDEA中做JAVA开发,IDE会做很多的检查提醒,比如命名的驼峰提醒,重复代码的提醒。今天遇到一个提醒,在JPA中PO类上的Table注解红色错误提醒,默认Table注解不设置name属性的话,那就按照驼峰原则匹配数据库中的表(orderTEST),但是数据库中的是 order_test,所以才会设置name属性值。

@Data
@Entity
@Table(name = "order_test")
public class OrderTEST 

Table注解的name属性值上,提醒信息:

Cannot resolve table 'order_test' 
 Inspection info: This inspection controls whether the Persistence ORM annotations are checked against configured Datasources
 大意是:该检查控制是否针对配置的数据源检查持久性ORM注释,没有匹配合适的数据源

忽略此错误,在测试代码中能顺利的匹配到表 order_test,可以查询出数据来。那说明IDEA这个提醒不影响操作。但是看着红色error很难受,就搜搜网上资料来清除error。

file -> settings -> editor -> inspections -> JPA -> unresolved database references in annntation (修改这个值就可以,我这里没有取消这个检查,只是把级别降低为 warning)

IDEA修改提醒的内容 Cannot resolve table '' Inspection info_第1张图片

IDEA的提醒很强大,偶尔会有需要修改的个性化的配置,需要慢慢的去摸索。

你可能感兴趣的:(其他,java)