Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Reques...

image.png

起初看到空指针异常本能反应是数据库那段出问题了,检查了数据库内字段类型和pojo内是否一致,一致,排除,

image.png

提示信息是从dao开始出错,去检查application.yml文件中是否配置连接数据库是否出错,未出错,排除。

度娘给的答案:
Service层实现类未添加注解@Autowired。
@Autowired的作用是自动注入依赖的Bean。

粗心的问题,在service层的实现类中引入dao时,未在dao上加@Resource

你可能感兴趣的:(Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Reques...)