属性名是isanchor 方法名是isIsanchor
看beetl的ObjectUtil的源码发现 不支持类型boolean字段名是is开头的字段
if(invoker==null){
if(name.startsWith("is")){
methodName = name;
method = getGetMethod(c, methodName, null);
if(method!=null){
invoker = new PojoMethodInvoker(method);
}
}else{
methodName = getIsMethod(name);
method = getGetMethod(c, methodName, null);
if(method!=null){
invoker = new PojoMethodInvoker(method);
}
}
}
咋搞。。。。