用ssh+dwr做用户登录 存放session 并且把用户所发布的信息 同时存入 session
UsersBizImpl类 login方法 里面调用 类RentBizImpl 的 searchInfoByUserId从数据库查询信息的 方法  
public Users Login(String name, String pass, HttpSession session) {
Object[] obj = { name, pass };
String hql = "from Users u where u.username=? and u.userpass=?";
List list = usersDao.getUser(hql, obj);
if (null != list && list.size() > 0) {
Users users=(Users)list.get(0);
session = WebContextFactory.get().getSession();
session.setAttribute("loginUser", (Users) users);
session.setAttribute("userInfoList", new RentBizImpl().searchRentByUserId(users.getId())) ;
return (Users) session.getAttribute("loginUser");
} else {
return null;
}
}、 public List searchInfoByUserId(Integer uid) {
// TODO Auto-generated method stub
List info=rentDao.getListByUserId("from Rent r where r.users.id=" + uid);
return info;
}
控制台没出现异常信息 但程序出错  我调试出现 
Daemon Thread[http-9090-1](Suspended)
SystemLogHandler.println(String) line: 238  运行到这里就不懂了 报异常Source not found for SystemLogHandler.println(String) line: 238SystemLogHandler是tomcat的一个内部类 我想我代码 应该没错 但是怎么出现这东西   很烦人 都弄了很久了 还得请大家帮帮我 谢谢