关于使用metadata.tools.isPersistent(property)的问题

我在一个类中定义了一个List成员,使用metadata.tools.isPersistent(property)的时候,给我返回true,
数据库中是没有这个字段的,这样正常吗?
image

这个属性所在实体在 persistence.xml 中定义了,并且属性由 ORM 管理,那么这个属性就是 persistent 的。 这个是正确的行为。

Determine whether the given property is persistent, that is managed by ORM.
A property is persistent if it is defined in a class registered in persistence.xml and the corresponding attribute is managed by ORM, i.e. has an annotation like @Column, @JoinColumn, etc.