我正在使用json-plugin处理struts2中的一个项目:我有一个扩展ActionSupport的BaseAction,并声明了一些用@JsonProperty注释标记的公共字段。
public abstract class BaseAction extends ActionSupport {
@JsonProperty
private String commonField1;
@JsonProperty
private String commonField2;
public String execute() {
executeAction();
//some things to get the values in the JsonProperties
}
public abstract void executeAction();
}
此框架中的每个操作都扩展了BaseAction并声明了一些标记为@JsonProperty的特定字段。
public class SpecificAction extends BaseAction {
@JsonProperty
private String specificField1;
@JsonProperty
private String specificField2;
public void executeAction() {
//things
}
}
我正在寻找一种方法来在BaseAction中访问存储在所有@JsonProperty字段中的所有值。
修改
我昨天尝试使用
ObjectMapper mapper = new ObjectMapper();
mapper.writeValueAsString(this);
但它没有用。这是正确的方法吗?
我也尝试使用像答案那样的反射,像这样:
Field[] fields = this.getClass().getDeclaredFields();
Map<String, Object> jsonProperties = new HashMap<String, Object>();
for (Field field : fields) {
logger.debug(methodName, "Field " + field.getName());
field.setAccessible(true);
try {
if(field.isAnnotationPresent(JsonProperty.class)) {
Object obj = new Object();
logger.debug(methodName, "Field: " + field.getName());
jsonProperties.put(field.getName(), field.get(obj));
}
} catch(Exception e) {
logger.error(methodName, "Errore", e);
}
}
但它让我失去了一个我无法解决的例外:
IllegalArgumentException:无法将net.sf.json.JSONObject字段设置为java.lang.Object
答案 0 :(得分:0)
从超类访问属性的唯一方法是通过反射。
在BaseAction.execute()方法中,您可以找到实际的对象类,然后遍历所有属性,检查属性是否具有@JsonProperty注释。如果找到注释,则可以获取名称和属性值。
我建议您更改系统设计,这样就不需要这样做了。