用findByExample(Object exampleEntity)方法可以应用在用户登录上面,获得有登陆名和密码的user对象进行查询。
返回两者都符合的对象列表,为空则登陆失败。
错误的方法:
List list = null;
this.setlist(result); if(list != null){
return SUCCESS;
}else{
return INPUT;
}
正确的方法:
1 List list = null;
2 this.setlist(result);
3
4 if(list.size() != 0){
5 return SUCCESS;
6 }else{
7 return INPUT;
8 }
不知道为啥。