Easter79 Easter79
3年前
spring集成多个rabbitMQ
转自:https://blog.csdn.net/zz775854904/article/details/81092892MQ全称为MessageQueue, 消息队列(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Fbaike.baidu.com%2Fview%2F262473.h
Stella981 Stella981
3年前
Spring Boot 整合 JdbcTemplate 多数据源
学习在SpringBoot中使用JdbcTemplate多数据源来操作不同的数据库。JdbcTemplate是Spring自带的,虽然功能没有MyBatis强大,但使用简单。1创建工程并配置新建SpringBoot项目springbootjdbctemplatemulti,添加Web/J
Stella981 Stella981
3年前
Spring Security教程(一)
一概要SpringSecurity,这是一种基于SpringAOP和Servlet过滤器的安全框架。它提供全面的安全性解决方案,同时在Web请求级和方法调用级处理身份确认和授权。这里过多的springsecurity解释和作用就不在这里赘述了,请自行搜索。目前最新版本的SpringSecurity为4.2.2,但是我这里用
Easter79 Easter79
3年前
Spring定时器配置方法
对于一个已经配置好spring框架的项目,添加定时器很简单。springmvc.xml文件中配置下面内容<!加载指定目录下的@Controller@Service@Component@Repository<context:componentscanbasepackage"cn.com.app.pingand
Stella981 Stella981
3年前
Spring Cloud升级之路
针对网关非Get请求的重试在之前的系列里面SpringCloud升级之路Hoxton5.实现微服务调用重试(https://my.oschina.net/u/3747772/blog/4301365),我们针对OpenFeign和SpringCloudGateway都设置了重试。对于
Stella981 Stella981
3年前
IntelliJ IDEA创建spring
开发环境:  jdk版本:JDK8  maven版本:maven3.5.2开发工具:ItellijIDEA2017.1前提条件:已安装以上软件并配置好jdk和maven的环境变量创建步骤:1.点击坐上角file》选择new》点击projec
Stella981 Stella981
3年前
Spring seucrity 新坑
https://spring.io/blog/2020/04/15/announcingthespringauthorizationserver(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fspring.io%2Fblog%2F2020%2F04%2F15%2Fannounc
Easter79 Easter79
3年前
Spring源码阅读——3
SpringIoC容器1、IoC容器概述控制反转、IoC容器、依赖注入控制反转:不是什么技术,而是一种设计思想。Ioc意味着将你设计好的对象交给容器控制,而不是传统的在你的对象内部直接控制。IoC容器:IoC容器控制了对象的
Stella981 Stella981
3年前
OncePerRequestFilter的作用
在spring中,filter都默认继承OncePerRequestFilter,但为什么要这样呢?OncePerRequestFilter顾名思义,他能够确保在一次请求只通过一次filter,而不需要重复执行。publicfinalvoiddoFilter(ServletRequestrequest,ServletResponse