数据查询的时候,在查询方法调用的时候抛出异常,根本就没进去方法里卖弄,所以这时候如果确认查询语句没错的话,一般就是调用这个方法的对象没有@autowire
项目场景:
使用SSM框架进行操作数据库存储数据时
问题描述:
message Request processing failed; nested exception is java.lang.NullPointerException
[Request processing failed; nested exception is java.lang.NullPointerException]
原因分析:
controller没有自动注入对象
解决方案:
@Autowired
private ExperimentService experimentService;