Servlet.service() for servlet [springmvc] in context with path [/xxxxxx] threw exception报错解决办法

第二次报这个错。

严重: Servlet.service() for servlet [springmvc] in context with path [/xxxxxx] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause

java.lang.NullPointerException

昨天调试程序的时候就出现了这个错误,然后各种调试查找,网上搜索,一直找不到解决办法。

然后找来大神同伴,帮忙看程序。终于,有结果了。由于之前先写了一个shareDao类,在service中使用时写成了如下形式:

Servlet.service() for servlet [springmvc] in context with path [/xxxxxx] threw exception报错解决办法_第1张图片

犯的低级错误,但是在自己检查的时候,根本没有注意这个地方。修改后:

Servlet.service() for servlet [springmvc] in context with path [/xxxxxx] threw exception报错解决办法_第2张图片

分别注入,在保存运行,正常不报错了!

你可能感兴趣的:(java,spring,MVC)