Stella981 Stella981
3年前
Kafka 入门和 Spring Boot 集成
Kafka入门和SpringBoot集成概述kafka是一个高性能的消息队列,也是一个分布式流处理平台(这里的流指的是数据流)。由java和Scala语言编写,最早由LinkedIn开发,并2011年开源,现在由Apache开发维护。应用场景下面列举了
Stella981 Stella981
3年前
Spring Boot自动配置原理、实战
SpringBoot自动配置原理SpringBoot的自动配置注解是@EnableAutoConfiguration,从上面的@Import的类可以找到下面自动加载自动配置的映射。1.org.springframework.core.io.support.SpringFactoriesLoader.lo
Stella981 Stella981
3年前
Spring Cache缓存技术的介绍
缓存用于提升系统的性能,特别适用于一些对资源需求比较高的操作。本文介绍如何基于springbootcache技术,使用caffeine作为具体的缓存实现,对操作的结果进行缓存。demo场景本demo将创建一个web应用,提供两个Rest接口。一个接口用于接受查询请求,并有条件的缓存查询结果。另一个接口用于获取所有缓存的数据,用于监控
Wesley13 Wesley13
3年前
Spring接收参数的几种形式
通过Springcontroller的机制自动绑定参数form表单或者通过url传递过来的参数,如果参数name和预定义的name一致则可以直接绑定。Controller代码@RequestMapping("test")publicvoidtest(intcount){}或者@Req
Stella981 Stella981
3年前
Spring Boot + Redis 处理 Session 共享
!(https://oscimg.oschina.net/oscnet/1c33266bc92f4817b73ae60421658769.png)背景Web开发中,通过Session在服务端记录用户状态是很常见的操作。对于Web开发中Session、Cookie等概念请参考《Session机制详解》
Stella981 Stella981
3年前
Spring boot webflux 中实现 RequestContextHolder
说明在Springbootweb中我们可以通过RequestContextHolder很方便的获取request。ServletRequestAttributesrequestAttributes(ServletRequestAttributes)RequestContextHolder.getReq
Stella981 Stella981
3年前
Spring MVC详细源码解析(下篇)
至此,第二步已经全部结束,接下来要接触到HandlerAdapter。第四步:再次回到DispatcherServlet类的doDispatch方法,继续往下走,进到getHandlerAdapter方法中。在DispatcherServlet类中维护了一个名为handlerAdapters的List集合,里面保存了所有的HandlerA
Stella981 Stella981
3年前
Spring Boot 快速迁移至 Quarkus
Quarkus是一个目前非常火的Java应用开发框架,定位是轻量级的微服务框架。,Quarkus提供了优秀的容器化整合能力,相较于传统开发框架(SpringBoot)有着更快的启动速度、更小的内存消耗、更短的服务响应。!Quarkus性能对比图(https://oscimg.oschina.net/oscnet/up84a7f01c21
Stella981 Stella981
3年前
Spring Boot国际化支持
文章目录添加Maven支持(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fblog.csdn.net%2Fsuperfjj%2Farticle%2Fdetails%2F104422396%23Maven_5)LocaleResolver(https:/
Easter79 Easter79
3年前
Spring自带的多线程任务
1.添加配置类packagecom.yiyoudao.config;importorg.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;importorg.springframework.context.annotation.Compo