
Spring Boot
Just_learn_more
这个作者很懒,什么都没留下…
展开
-
Spring Boot 系列学习资料
文章目录学习资料学习资料来源:githubgoogle搜索教程博客:泥瓦匠程序员DD原创 2019-06-02 22:29:28 · 404 阅读 · 0 评论 -
Spring Boot测试报错
文章目录报错信息解决方案报错信息java.lang.IllegalStateException: Failed to load ApplicationContext at org.springframework.test.contextLoads解决方案认真查看Caused By信息,即可解决问题。...原创 2019-05-29 18:06:58 · 632 阅读 · 0 评论 -
Spring Boot框架model层、dao层、service层、controller层分析设计
文章目录model层dao层service层controller层model层model层即数据库实体层,也被称为entity层,pojo层。一般将数据库一张表对应一个实体类,类属性同表字段一一对应。dao层dao层即数据持久层,也被称为mapper层。dao层的作用为访问数据库,向数据库发送sql语句,完成数据的增删改查任务。service层service层即业务逻辑层...原创 2019-05-29 09:28:16 · 36376 阅读 · 5 评论