接着前面的Topic交换器,我们来研究一下Fanout交换器。 Fanout交换器: 扇形模式,不处理路由键,只是简单将队列绑定到交换器,发送到交换器的每条消息都回被转发到该交换器绑定的所有队列中,类型子网传播,通过Fanout交换器转发消息是最快的 现在进入实例工程来了解一下FanoutExcha ...
分类:
编程语言 时间:
2021-04-16 11:44:48
阅读次数:
0
springboot+mybatis+druid 多数据源 1. 创建maven项目,引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifact ...
分类:
数据库 时间:
2021-04-16 11:44:35
阅读次数:
0
一、快速开发 1.添加依赖 <!--mybatis-plus--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.1</vers ...
分类:
其他好文 时间:
2021-04-15 12:27:49
阅读次数:
0
一、引入依赖 https://mvnrepository.com/ <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.2</vers ...
分类:
编程语言 时间:
2021-04-15 12:07:08
阅读次数:
0
1,pom依赖导入 注:spring boot版本须使用2。1.0以下版本,此次使用2.0.9版本 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</a ...
分类:
编程语言 时间:
2021-04-15 12:03:14
阅读次数:
0
项目 新建 Spring Starter Project,编辑 pom.xml 文件,引入依赖: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=" ...
分类:
编程语言 时间:
2021-04-14 12:33:52
阅读次数:
0
在WDS+MDT部署的时候。 我们有boot.wim,引导用的。 还有install.win,系统的。 还有MDT生成的PE的。 先抛开我使用virtualBox做测试,如果需要添加网卡驱动。 那么加入到哪里? boot.wim,是需要加的,否则引导起系统后,没有网卡驱动,无法加载install.w ...
分类:
其他好文 时间:
2021-04-14 12:19:47
阅读次数:
0
cat /proc/cmdline查看cmdline文件,文件中保存了内核启动参数 包括boot镜像、分区识别号、文件系统类型、rootwait终端. ...
分类:
其他好文 时间:
2021-04-13 12:10:27
阅读次数:
0
springboot常用注解 1. @SpringBootApplication 这个注解是 Spring Boot 项目的基石,创建 SpringBoot 项目之后会默认在主类加上。 @SpringBootApplication看作是 @Configuration、@EnableAutoConfi ...
分类:
编程语言 时间:
2021-04-12 12:19:37
阅读次数:
0
1. pom.xml Maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> 2. ...
分类:
数据库 时间:
2021-04-10 13:33:58
阅读次数:
0