摘要:
Eclipse调试时出现Exception Processing async thread queue异常。Problem Reports Fixed88752: Exception processing async thread queue: NullPointerException in ASTInstructionCompiler官方的描述是 https://bugs.eclipse.org/bugs/show_bug.cgi?id=88752在debug视图经常得到'Exception processing async thread queue' 这个消息。当' 阅读全文
摘要:
public Student getById(int id) { // TODO Auto-generated method stub return (Student) getSqlMapClientTemplate().queryForList("getStudentById",id); }这是自己写的代码遇到了个错误,很纠结……上网找了好半天最后才发现是自己的函数写错了:queryForList只能是返回一个Arraylist的序列值并不能转化为Student的对象。这里需要用到的是queryForObject函数来返回一个对象Student类。 阅读全文