gpt4 book ai didi

java - 从具有对象 "Field"的私有(private)字段中获取值。 JAVA

转载 作者:行者123 更新时间:2023-11-30 06:33:20 25 4
gpt4 key购买 nike

我的问题是,我想使用 Hibernate 将类对象 java.lang.reflect.Field 保存到数据库中。例如。表:

@Entity
public class Actor implements Serializable {
@Id
@GeneratedValue
private Long id;
private String name;

public void setName(String name) {
this.name = name;
}

public String getName() {
return name;
}

private void setId(Long id) {
this.id = id;
}

public Long getId() {
return id;
}
}

我有条件表,我想通过字符串存储 java.lang.reflect.Field 对象:

@Entity
public class Conditions implements Serializable {

@Id
@GeneratedValue
private Long id;
private String value;
private String field;
private int type;

public void setField(String field) {
this.field = field;
}

public void setType(int type) {
this.type = type;
}

public void setValue(String value) {
this.value = value;
}

public String getField() {
return field;
}

public int getType() {
return type;
}

public String getValue() {
return value;
}

private void setId(Long id) {
this.id = id;
}

public Long getId() {
return id;
}
}

现在我会做类似的事情:

Conditions con;
// con = get our condition from database (via hibernate)
java.lang.reflect.Field f = Actor.class.getDeclaredField(con.getField());
Actor a = new Actor();
a.setName("My name");
String ActorName = f.get(a);

这是我的问题,现在我得到了这样的异常:

java.lang.IllegalAccessException: Class testsms.TestSms can not access a member of class tables.Actor with modifiers "private"

可能我需要使用 Actor.class.getDeclaredMethods() 但我不知道如何使用。谁能帮我解决这个问题?

最佳答案

您可以尝试 f.setAccessible(true) 然后重新运行您的代码吗?

关于java - 从具有对象 "Field"的私有(private)字段中获取值。 JAVA,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8111658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com