严重: Servlet.service() for servlet [LOGSYS-manager] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause
java.lang.NullPointerException
at com.LOGSYS.service.impl.StuInfoServiceImpl.getStuInfo(StuInfoServiceImpl.java:54)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:317)
package com.LOGSYS.service.impl;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.LOGSYS.common.pojo.EUDataGridResult;
import com.LOGSYS.mapper.ClassInfoMapper;
import com.LOGSYS.mapper.StudentInfoMapper;
import com.LOGSYS.pojo.ClassInfo;
import com.LOGSYS.pojo.ClassInfoExample;
import com.LOGSYS.pojo.ClassInfoExample.Criteria;
import com.LOGSYS.pojo.StuLinkClsVO;
import com.LOGSYS.pojo.StudentInfo;
import com.LOGSYS.pojo.StudentInfoExample;
import com.LOGSYS.service.StuInfoService;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
/**
* 学生管理Service
*
* @ClassName StuInfoServiceImpl
* @Description 学生管理Service
* @author chenjunjie
* @Date 2017年8月15日 下午3:16:22
* @version 1.0.0
*/
@Service
public class StuInfoServiceImpl implements StuInfoService {
@Autowired
private StudentInfoMapper sinfoMapper;
private ClassInfoMapper cinfoMapper;
/**
* 学生列表查询
*/
@Override
public EUDataGridResult getStuInfo(int page, int rows) {
// 查询学生列表
StudentInfoExample example = new StudentInfoExample();
ClassInfoExample cExample = new ClassInfoExample();
// 分页处理
PageHelper.startPage(page, rows);
List<StuLinkClsVO> zlist = new ArrayList<>();
ClassInfo info = new ClassInfo();
List<StudentInfo> list = sinfoMapper.selectByExample(example);
for (StudentInfo studentInfo : list) {
Criteria criteria = cExample.createCriteria();
criteria.andClsIdEqualTo(studentInfo.getClsId());
List<ClassInfo> list2 = cinfoMapper.selectByExample(cExample);
if (list2 != null && list2.size() > 0) {
info = list2.get(0);
}
StuLinkClsVO stuLinkClsVO = new StuLinkClsVO(info.getCname(), studentInfo.getStuId(), studentInfo.getSno(),studentInfo.getSname(), studentInfo.getsGender(), studentInfo.getClsId(), studentInfo.getStuTel(),studentInfo.getsAddress(), studentInfo.getCreated(), studentInfo.getUpdated(),studentInfo.getRole());
zlist.add(stuLinkClsVO);
}
// 创建一个返回对象
EUDataGridResult dataGridResult = new EUDataGridResult();
dataGridResult.setRows(zlist);
// 取记录总条数
PageInfo<StuLinkClsVO> pinfo = new PageInfo<>(zlist);
dataGridResult.setTotal(pinfo.getTotal());
return dataGridResult;
}
}
上面是错误信息
我在多表查询时候,是用了mybatis逆向工程生成的mapper和pojo代码。
我新建了一个pojo,里面包括学生pojo 和 班级pojo ,我从学生的Service层中调用班级的mapper,通过byexample查数据库,就会报空指针异常。
54行是 List list2 = cinfoMapper.selectByExample(cExample);
我大概想到,可能是在学生Service中不能去调用班级的mapper完成查询。
但是想解决却毫无头绪。
新学的知识很多地方很薄弱,请各位大神稍作解答,万分感谢了。