上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页
摘要: 使用注解方式实现RabbitMq整合 RabbitMq交换器接收到的消息会广播到每一个绑定的消息队列。(fanout类型的交换器) 在进行该部分实验前把之前的交换器和队列删除,在RabbitMq管理后台完成。 1、RabbitMq配置类 @Configuration public class Rab 阅读全文
posted @ 2020-09-11 23:05 codeing123 阅读(689) 评论(0) 推荐(0) 编辑
摘要: 1、首先下载安装好Rabbit MQ,使用Username : guest Password: guest登录 2、观察目前RabbitMq中的Exchange和queue的情况。下图是默认存在的交换器 3、 默认没有任何消息队列 RabbitMQ和SpringBoot整合 RabbitMq交换器接 阅读全文
posted @ 2020-09-11 22:17 codeing123 阅读(538) 评论(0) 推荐(0) 编辑
摘要: SpringSecurity 1、SpringSecurity主要还是在配置文件里面配置 类前面添加注解 @EnableWebSecurity 继承 WebSecurityConfigurerAdapter 注入自带的DataSource 注入重写的UserDetailsService 重写用户身份 阅读全文
posted @ 2020-09-11 11:06 codeing123 阅读(4203) 评论(0) 推荐(0) 编辑
摘要: 后端分页 1、在pom.xml文件添加pageHelper的依赖。 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <versi 阅读全文
posted @ 2020-09-10 21:30 codeing123 阅读(1474) 评论(0) 推荐(0) 编辑
摘要: 基于注解的Redis缓存实现 1、加入redis依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependen 阅读全文
posted @ 2020-09-09 15:56 codeing123 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 基本缓存 1、导入springbootdata数据库 SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- -- Table structure for t_article -- DROP TABLE IF EXISTS `t_article`; CRE 阅读全文
posted @ 2020-09-09 11:00 codeing123 阅读(390) 评论(0) 推荐(0) 编辑
摘要: 整合SpringBoot与Mybatis 1、创建一个Spring Boot项目。pom配置文件中添加依赖,这里我们采用了阿里巴巴的Druid连接池 <!-- 阿里巴巴的Druid数据源依赖启动器 --><dependency> <groupId>com.alibaba</groupId> <art 阅读全文
posted @ 2020-09-08 11:02 codeing123 阅读(765) 评论(0) 推荐(0) 编辑
摘要: metismenu的使用使用参考网址:https://mm.onokumus.com/ 使用 1、加入metisMenu所有样式 <!-- 加载metisMenu所用样式--> <link rel="stylesheet" th:href="@{/bootstrap4/assets/metismen 阅读全文
posted @ 2020-09-08 08:28 codeing123 阅读(2817) 评论(0) 推荐(0) 编辑
摘要: Bootstrap表单验证 form表单的注意点: form标签内加入 novalidate属性,并为该表单添加id 每个需要验证的标签内都要加入 required属性 提示信息固定写法:紧跟着要验证的标签后面添加 <div class="invalid-feedback"> 用户名至少6位</di 阅读全文
posted @ 2020-09-08 08:16 codeing123 阅读(460) 评论(0) 推荐(0) 编辑
摘要: Thymeleaf的国际化 1、创建一个SpringBoot工程,明明为I18n-demo,选择Thymeleaf和SpringBoot-Web启动器。该工程的目录结构如下图所示: 2、编写MyLocalResovel.java ,实现LocaleResolver接口 @Configuration 阅读全文
posted @ 2020-09-07 22:41 codeing123 阅读(593) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页