我正在尝试在控制台中打印我需要的超类字段的名称,以便稍后计算在一个简单的 POJO 时工作正常,但是当该类先前由 Hibernate 加载时,我得到的是子类的字段而不是超类和当我打印父级的名称时(当由 Hibernate 加载时,我得到以下信息)
[处理程序,_filter_signature,serialVersionUID,方法]
这是我的代码
public static void main(String[] args)
{
FixingModels clazz = new FixingModels();
HibernateHandler handler = new HibernateHandler(true);
Student student = (Student)handler.getSession().load(Student.class,1);
Student newStudent = new Student();
System.out.println("Printing Class loaded by Hibernate");
clazz.showFieldsFromSuperClass(student);//show the Fields of the Child and parent wrong
System.out.println("--------------------------------------------------");
System.out.println("Printing Class instance by new..");
clazz.showFieldsFromSuperClass(newStudent);//Show the fields from the parent and child IS O.K
}
private void showFieldsFromSuperClass(Student clazz)
{
final Class objectClass = clazz.getClass();
final Class parentClass = objectClass.getSuperclass();
System.out.println("Printing Child");
for(Field field:objectClass.getDeclaredFields())System.out.println(field.getName());//printing child
System.out.println("Printing Parent");
for(Field field:parentClass.getDeclaredFields())System.out.println(field.getName());//printing parent
}
第一次
clazz.showFieldsFromSuperClass(student);
被称为打印 [handler,_filter_signature,serialVersionUID, methods ] 之后来自孩子的字段就像休眠现在是我的学生类的父类而不是我的代码中的抽象类。之后
clazz.showFieldsFromSuperClass(newStudent);
在这种情况下,正在打印学生字段的正确字段以及它的父 Person
我的问题是我如何从休眠或 Spring 容器的新实例中获取 Person 类字段 [Parent Class]?