Spring的AOP源码解析 Spring的AOP源码解析
Spring AOP 源码分析AOP 是 OOP 的延续,是 Aspect Oriented Programming 的缩写,意思是面向切面编程。可以通过预 编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术
2023-08-27
Spring的事务 Spring的事务
基础配置 <aop:aspectj-autoproxy proxy-target-class="true"/> <bean id="transactionManager" class="org.springframework
2023-08-27
Spring Boot介绍 Spring Boot介绍
什么是Spring Boot?对于 spring 框架,我们接触得比较多的应该是 spring mvc、 和 spring。而 spring 的核心在于 IOC(控制反转)和 DI (依赖注入)。而这些框架在使用的过程中会需要配置大量 的
2023-08-27
Spring Boot源码解读 Spring Boot源码解读
从 SpringBootApplication 注解入手为了揭开 springboot 的奥秘,我们直接从 Annotation 入 手,看看@SpringBootApplication 里面,做了什么? 打开 SpringBootAppl
2023-08-27
Spring Cloud 之 Consule Spring Cloud 之 Consule
docker 下环境搭建.env文件: CONSUL_IDR=./ docker-compose.yml文件: version: '3' services: consul: image: consul:latest
2023-08-27
Spring Cloud 之 Ribbon Spring Cloud 之 Ribbon
通过Spring Cloud Ribbon的封装,我们在微服务架构中使用客户端负载均衡调用非常简单,只需要两步: 服务提供者只需要启动多个服务实例并注册到一个注册中心或多个相关联的服务注册中心。 服务消费者直接通过调用被@LoadBala
2023-08-27
Spring Cloud 之 Feign Spring Cloud 之 Feign
Feign是什么?Feign是一个声明式WebService客户端.使用Feign能让编写WebService客户端更加简单,它的使用方法是定义一个接口,然后在上面添加注解,同时也支持JAX-RS标准的注解.Feign也支持可拔插式的编码器
2023-08-27
Spring Cloud 之 Config Spring Cloud 之 Config
为什么要统一管理微服务配置对于Spring Boot应用,我们可以将配置内容写入application.yml,设置多个profile,也可以用多个application-{profile}.properties文件配置
2023-08-27
Spring Cloud 之 hystrix Spring Cloud 之 hystrix
引入jar包 compile group: 'org.springframework.cloud', name: 'spring-cloud-starter-netflix-hystrix', version: '2.2.3.RELEASE
2023-08-27
7 / 23