黑马程序员-springboot-开发实用篇

  1. 手工启动热部署

黑马程序员-springboot-开发实用篇_第1张图片
黑马程序员-springboot-开发实用篇_第2张图片
黑马程序员-springboot-开发实用篇_第3张图片
  1. 自动启发热部署

黑马程序员-springboot-开发实用篇_第4张图片

第一步

Settings->compile->Build project autiomatically

第二步

Settings->Advanced Settings->Allow auto make

  1. 热部署范围设置

黑马程序员-springboot-开发实用篇_第5张图片
黑马程序员-springboot-开发实用篇_第6张图片
黑马程序员-springboot-开发实用篇_第7张图片

4.关闭热部署

开发环境的时候热部署肯定是不能使用 的

黑马程序员-springboot-开发实用篇_第8张图片
黑马程序员-springboot-开发实用篇_第9张图片
黑马程序员-springboot-开发实用篇_第10张图片

5.第三方bean属性绑定

什么都不用勾,不用web环境了

ctrl+alt+v得到返回值对象

黑马程序员-springboot-开发实用篇_第11张图片
黑马程序员-springboot-开发实用篇_第12张图片
黑马程序员-springboot-开发实用篇_第13张图片
黑马程序员-springboot-开发实用篇_第14张图片

6.松散绑定

黑马程序员-springboot-开发实用篇_第15张图片
黑马程序员-springboot-开发实用篇_第16张图片
黑马程序员-springboot-开发实用篇_第17张图片
黑马程序员-springboot-开发实用篇_第18张图片

@Con....才能用

如果是@Value这种注入就没法用

kebab烤肉串

7.常用计量单位应用

黑马程序员-springboot-开发实用篇_第19张图片
黑马程序员-springboot-开发实用篇_第20张图片
黑马程序员-springboot-开发实用篇_第21张图片

8.bean属性校验

黑马程序员-springboot-开发实用篇_第22张图片
黑马程序员-springboot-开发实用篇_第23张图片
黑马程序员-springboot-开发实用篇_第24张图片
黑马程序员-springboot-开发实用篇_第25张图片

第四步:使用hibernate框架提供的校验器做实现类

9.进制数据转换

黑马程序员-springboot-开发实用篇_第26张图片
黑马程序员-springboot-开发实用篇_第27张图片
黑马程序员-springboot-开发实用篇_第28张图片

10.加载测试专用属性

黑马程序员-springboot-开发实用篇_第29张图片
黑马程序员-springboot-开发实用篇_第30张图片
黑马程序员-springboot-开发实用篇_第31张图片
黑马程序员-springboot-开发实用篇_第32张图片

11.加载测试专用配置

黑马程序员-springboot-开发实用篇_第33张图片
黑马程序员-springboot-开发实用篇_第34张图片

12.测试类中启动web环境

先修改pom.xml文件里面改成web

黑马程序员-springboot-开发实用篇_第35张图片

13.发送虚拟请求

黑马程序员-springboot-开发实用篇_第36张图片

14.匹配响应执行状态

黑马程序员-springboot-开发实用篇_第37张图片

15.匹配响应体

黑马程序员-springboot-开发实用篇_第38张图片

16.匹配请求头

黑马程序员-springboot-开发实用篇_第39张图片

16.业务层测试事务回滚

黑马程序员-springboot-开发实用篇_第40张图片

序号乱了没关系

黑马程序员-springboot-开发实用篇_第41张图片

17.测试用例设置随机数据

黑马程序员-springboot-开发实用篇_第42张图片
黑马程序员-springboot-开发实用篇_第43张图片
黑马程序员-springboot-开发实用篇_第44张图片

复习前面配置类时候的知识

黑马程序员-springboot-开发实用篇_第45张图片

18.内置数据源

黑马程序员-springboot-开发实用篇_第46张图片
黑马程序员-springboot-开发实用篇_第47张图片
黑马程序员-springboot-开发实用篇_第48张图片

其实导入druid这些type和这个druid:都可以不用写

黑马程序员-springboot-开发实用篇_第49张图片

但是在hikari里面url不能放里面,原理篇会讲

黑马程序员-springboot-开发实用篇_第50张图片

有各种各样的数据源

黑马程序员-springboot-开发实用篇_第51张图片
黑马程序员-springboot-开发实用篇_第52张图片

什么都不选就是默认hikari,但是url放在外面

黑马程序员-springboot-开发实用篇_第53张图片

可以进行个性化配置,用哪个加哪个

黑马程序员-springboot-开发实用篇_第54张图片

19.JdbcTemplate

黑马程序员-springboot-开发实用篇_第55张图片
黑马程序员-springboot-开发实用篇_第56张图片
黑马程序员-springboot-开发实用篇_第57张图片
黑马程序员-springboot-开发实用篇_第58张图片
黑马程序员-springboot-开发实用篇_第59张图片

20.H2数据库

黑马程序员-springboot-开发实用篇_第60张图片
黑马程序员-springboot-开发实用篇_第61张图片
黑马程序员-springboot-开发实用篇_第62张图片

浏览器可以进入这个内嵌数据库

也可以用mp操作这个h2数据库

黑马程序员-springboot-开发实用篇_第63张图片
黑马程序员-springboot-开发实用篇_第64张图片
黑马程序员-springboot-开发实用篇_第65张图片
黑马程序员-springboot-开发实用篇_第66张图片
黑马程序员-springboot-开发实用篇_第67张图片
黑马程序员-springboot-开发实用篇_第68张图片
黑马程序员-springboot-开发实用篇_第69张图片

21.redis下载安装与基本使用

黑马程序员-springboot-开发实用篇_第70张图片
黑马程序员-springboot-开发实用篇_第71张图片
黑马程序员-springboot-开发实用篇_第72张图片
黑马程序员-springboot-开发实用篇_第73张图片

92集基础操作可反复观看

黑马程序员-springboot-开发实用篇_第74张图片

22.springboot整合redis

黑马程序员-springboot-开发实用篇_第75张图片
黑马程序员-springboot-开发实用篇_第76张图片

以上这个可以不加

黑马程序员-springboot-开发实用篇_第77张图片
黑马程序员-springboot-开发实用篇_第78张图片
黑马程序员-springboot-开发实用篇_第79张图片

23.springboot读写redis的客户端

黑马程序员-springboot-开发实用篇_第80张图片
黑马程序员-springboot-开发实用篇_第81张图片

24.springboot操作redis客户端(jedis)

黑马程序员-springboot-开发实用篇_第82张图片
黑马程序员-springboot-开发实用篇_第83张图片
黑马程序员-springboot-开发实用篇_第84张图片
黑马程序员-springboot-开发实用篇_第85张图片
黑马程序员-springboot-开发实用篇_第86张图片

25.缓存的作用

黑马程序员-springboot-开发实用篇_第87张图片
黑马程序员-springboot-开发实用篇_第88张图片
黑马程序员-springboot-开发实用篇_第89张图片

这一节具体看代码MsgService

26.springboot缓存使用方式

黑马程序员-springboot-开发实用篇_第90张图片
黑马程序员-springboot-开发实用篇_第91张图片

黑马程序员-springboot-开发实用篇_第92张图片
黑马程序员-springboot-开发实用篇_第93张图片
黑马程序员-springboot-开发实用篇_第94张图片

27.手机验证码案例-生成验证码

你可能感兴趣的:(java,spring,boot,后端,java)