Spring Cloud Alibaba实战(一) - 概述
1 什么是Spring Cloud Alibaba
◆ 阿里巴巴结合自身微服务实践,开源的微服务全家桶◆ 在Spring Cloud项目中孵化,很可能成为Spring Cloud第二代的标准实现◆ 在业界广泛使用,已有很多成功案例
Github issue :使用的公司及场景
2 应用场景
...
干货|Spring Cloud Bus 消息总线介绍
继上一篇 《干货|Spring Cloud Stream 体系及原理介绍》 之后,本期我们来了解下 Spring Cloud 体系中的另外一个组件 Spring Cloud Bus (建议先熟悉 Spring Cloud Stream,不然无法理解 Spring Cloud Bus 内部的代码)。
SpringMVC 第一章 - ContextLoaderListener
我们在使用SpringMVC的时候,做的第一件事情是配置**ContextLoaderListener**的监听器,这个监听器的作用,就是启动web容器的时候,自动装配ApplicationContext的配置信息,因为ContextLoaderListener实现了ServletContextListener接口,便会将ApplicationContext放置到servletContext中。
Spring Boot的快速启动和部署
1.Create stand-alone Spring applications
创建独立的Spring应用
2.Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)内嵌了Tomcat,Jetty或者Undertow,并且不需要部署
3.
Spring系列之AOP分析开篇(一)
在开始Spring的AOP分析之前,先来看一个很老的一个问题。。。假设你在开发的过程中,需要在类A中的方法之前执行一些逻辑(我们称为逻辑A),你可能的一个做法是直接修改类A中的方法,在类A中的方法的开始处写上要添加的代码,你还可能会给类A生成一个代理类,去对调用方法进行拦截,在代理类里面去执行相应的逻辑(逻辑A)。
springboot之使用redistemplate优雅地操作redis
概述
本文内容主要
关于spring-redis
关于redis的key设计
redis的基本数据结构
介绍redis与springboot的整合
sringboot中的redistemplate的使用
之前看了很多博客,大都都只是粗略的介绍,这里想要记录的全面一些,也算是一个学习的过程
首发于...