我正在尝试开发一些可移植到J2SE和Android平台上的实用程序代码,用于缓存对象。计划是在我使用它时提取一个抽象类,但是现在它是最终类实现的一部分。
我希望缓存的对象刚刚被实例化并传递给store(Object, Object)
方法,该方法将成为最终版本中抽象类的一部分,因此需要使用内省来确定如何存储数据。手。
算法并不复杂:
1)。扫描对象的方法,查找@Id
属性,如果找到则使用它来获取对象的密钥。
2)。扫描store()方法自己的类,以获取实现put(key.getClass(), value.getClass())
方法的字段,并使用它来缓存对象。
第(1)部分工作得很好,第2部分是我无法开始工作的。我明白了:
DEBUG c.n.v.ui.cache.Cache Not found: operativesMap.put(String, OperativeEntity)
WARN c.n.v.ui.cache.Cache Object Joe Bloogs, with key cac57510-c9c6-11df-8000-b56f1ffcb182 not cached!
INFO c.n.v.ui.cache.Cache Object Joe Bloggs, with key cac57510-c9c6-11df-8000-b56f1ffcb182 cached.
记录显示内省代码未能找到put方法并且已经下降到双重检查逻辑(当我将该方法移动到抽象类时必须将其删除)。
一如既往地感谢你们的帮助。
史蒂夫
public void store(Object key,
Object value) {
if (log.isInfoEnabled())
log.info("Storing: " + key + " => " + value);
for (Field field: getClass().getDeclaredFields())
if (store(field, key, value))
return;
log.warn("Object " + value + ", with key " + key + " not cached!");
if (value instanceof OperativeEntity) {
operativesMap.put(key.toString(), (OperativeEntity) value);
log.info("Object " + value + ", with key " + key + " cached.");
// How did I get here, and I do - the loop above should have found
// operativesMap, it's put method and stored the value
}
}
public boolean store(Field field,
Object key,
Object value) {
try {
Method method = field.getClass().getMethod("put", key.getClass(), value.getClass());
if (null != method)
return store(field.get(this), method, key, value);
else
return false;
} catch (NoSuchMethodException cause) {
if (log.isDebugEnabled())
log.debug("Not found: " + field.getName() + ".put(" + key.getClass().getSimpleName()
+ ", " + value.getClass().getSimpleName() + ")");
return false;
} catch (Exception cause) {
log.error("Stroing " + key + "=>" + value + " mapping", cause);
return false;
}
}
public boolean store(Object obj,
Method method,
Object key,
Object value) {
try {
method.invoke(obj, key, value);
if (log.isInfoEnabled())
log.info(">>>>>> Cached " + key + "=>" + value);
return true;
} catch (Exception cause) {
log.error("Stroing " + key + "=>" + value + " mapping", cause);
return false;
}
}
更新:
对于将来阅读此内容的任何人来说,找到有效的put方法的代码如下:
public boolean store(Field field,
Object key,
Object value) {
try {
Object obj = field.get(this);
Method method = obj.getClass().getMethod("put", Object.class, Object.class);
if (null != method) {
Class[] params = method.getParameterTypes();
if (log.isDebugEnabled())
log.debug(" Found: put(" + params[0].getSimpleName() + ", " + params[1].getSimpleName() + ")");
if (params[0].isAssignableFrom(key.getClass())
&& params[1].isAssignableFrom(value.getClass()))
return store(obj, method, key, value);
else
return false;
} else
return false;
} catch (NoSuchMethodException cause) {
if (log.isDebugEnabled())
log.debug("Not found: " + field.getName() + ".put(Object, Object)");
return false;
} catch (Exception cause) {
log.error("Storing " + key + "=>" + value + " mapping", cause);
return false;
}
}
答案 0 :(得分:0)
Class.getMethod()
获取参数的实际声明类型。因此,对于地图,这将是getMethod("put", Object.class, Object.class)
。如果您只想找到一个可以接受您拥有的键和值类型的put()
方法,则需要遍历该类的方法并使用Class.isAssignableFrom()
检查参数。