错误提示:Malformed OGNL expression: beginTime != null and beginTime !=''
org.apache.ibatis.ognl.TokenMgrError: Lexical error at line 1, column 22.
这个异常我怎么也改不出来
另外还有个疑问,map返回值应该怎么写?代码如下,
//图形统计
public Map<String, Object> userGraph(Map<String, Object> map){
try {
super.sqlSessionTemplate.selectList("com.kinglo.im.pojo.User.userGraph",map);
// super.sqlSessionTemplate.selectMap("com.kinglo.im.pojo.User.userGraph", map);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}