Bootstrap

ssm框架测试的时候遇到的一个空指针异常:Caused by: java.lang.NullPointerException

1、报错信息:

Caused by: java.lang.NullPointerException
	at com.github.pagehelper.PageSerializable.<init>(PageSerializable.java:48)
	at com.github.pagehelper.PageInfo.<init>(PageInfo.java:101)
	at com.feng.crud.handler.EmployeeController.getEmps(EmployeeController.java:28)

2、原因:
在这里插入图片描述
3、分析
根据报错信息找到对应的类,然后根据类里面的语句发现自己写的那个返回值为null,应该返回对应的值才对。
修改后的相应的代码片段:

@Service
public class EmployeeService {
	
	@Autowired
	EmployeeMapper employeeMapper;

	public List<Employee> getAll() {
		return employeeMapper.selectByExampleWithDept(null);
	}
	
}
;