Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause
原因:
Service层实现类未添加注解@Autowired或 @Resource。
@Resource和@Autowired的作用是自动注入依赖的Bean。
解决方法:
加上注解@Autowired或 @Resource。