已采纳回答 / 慕少4801248
dao层判空是因为它要返回的是一个Employee对象,而那个东西查出来的是list,需要把list转换成Employee对象,如果list没有东西,list.get()方法会报空指针。而Action判断是为了控制页面跳转
2016-11-15
Error calling method through OGNL: object: [com.employee.action.EmployeeAction@12e6f711] method: [login] args: [[]]
java.lang.NullPointerException
java.lang.NullPointerException
2016-11-13
最新回答 / 灰灰也很可爱3561554
public String edit(){ Integer id =Integer.parseInt(org.apache.struts2.ServletActionContext.getRequest().getParameter("id")); department = departmentService.findById(id); return "editSuccess"; }把获取id值得方法修改一下
2016-11-07
已采纳回答 / 就是要战逗
Hibernate4 的话不用继承那个 ..Support 类,也不需要这个HibernateTemplate ,注入一个sessionFactory, 然后这个sessionFactory.getCurrentSession,之后按Hibernate正常处理 。对了,需要在application里面 hibernate设置那里 加上 这个: <prop key="hibernate.current_session_context_class">org.springframework.o...
2016-11-04