Bootstrap

springboot项目用easycode自动生成代码,配置、问题及解决

1、Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

意思差不多是bean注入失败,即@Resource @Autowired这两种注解,失败,检查发现UserServiceImp层没有加

@Service("UserService")

捋一下流程:controller——》service(接口)——》serviceImp(通过@Service注解和implements service的方式,里面用.方法发调用dao层方法)——》dao层(通过properties文件的配置找到mapper目录下 xxDao.xml文件) ——》xxDao.xml文件,里面有sql语句。

 

 多的是问题,等我捋明白了库😭。。。。

;