
spring
文章平均质量分 74
Saleson
喜欢看书,看技术贴,喜欢研究如何提高开发效率,和大型网站的高并发性能.目前从事JAVA后端架构。
展开
-
Spring Boot Configuration和AutoConfiguration加载逻辑和加载顺序调整
在spring中, AutoConfiguration也是一个种Configuration,只是AutoConfiguration是不能使用proxy的。而且spring对于两者的加载顺序也不是一视同仁,是有顺序的。spring会先加载@Configuration标注的类,这个过程会将@AutoConfiguration标注的类给过滤掉;原创 2024-10-27 22:26:32 · 1087 阅读 · 0 评论 -
Spring ApplicationContext Init
Spring Web启动调用过程ContextLoaderListener:ContextLoader:ServletContextListener#contextInitialized() --> initWebApplicationContext() --> configureAndRefreshWebApplicationContext() -> customizeContext() --> ConfigurableWebApplicationContext#refresh(原创 2021-04-19 11:30:44 · 333 阅读 · 0 评论 -
Spring Singleton Bean 三级缓存
spring getBean的三级缓存有点绕,但理清楚了,就会发现也挺简单的。一、循环依赖循环依赖有多种情况,以下整理的三种:1、构造方法互相依赖例如ServiceA的构造方法中依赖了ServiceB, Service的构造方法中依赖了ServiceApublic class ServiceA { private ServiceB serviceB; public ServiceA(ServiceB serviceB){ this.serviceB = serviceB; }}原创 2021-04-18 19:07:55 · 357 阅读 · 1 评论 -
spring mvc DispatcherServlet 接收请求到响应数据的过程
经常做项目使用spring mvc,可是你了解过spring mvc是如何处理HttpServletRequest的么,从接收请求到响应数据,中间过程是怎么样的,这篇文章里面有详细描述。原创 2017-03-31 19:33:35 · 2812 阅读 · 0 评论 -
spring mvc @ResponseStatus 和 ResponseEntity
@ResponseStatus 是标记一个方法或异常类在返回时响应的http状态。其代码注释如下:** <p>The status code is applied to the HTTP response when the handler* method is invoked and overrides status information set by other means,* like原创 2017-05-05 17:36:02 · 19935 阅读 · 0 评论