-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
spring源码阅读笔记 #1
Comments
这破玩意儿这么复杂的吗 😈 |
②--常用接口记录一些常用到的接口的功能
+Environment :代表了当前程序运行的环境。同时创建代表环境的两个重要的概念,profiles和properties。profiles也就是一些bean(从xml或者注解而来)。 |
③可以研究的细节(未分类的意思)
|
④--RequestDispatcherServlet前瞻
在web.xml把他配成了一个servlet,并映射到 “/”路径上(一般情况下),这样任何请求都会到这个servlet里面。
流程简介这个流程把主要的方法(有注释的方法 😂)列出来了,第二步看上去很奇怪是因为,HttpServlet里没有定义Patch的method。 |
⑤--注解记录--持续更新bean factory 的初始化
|
spring-Integration(好用的很)RemotingJMSJCAJCATasksScheduling介绍一下Cron表达式Cron表达式由6或7个空格分割的时间字段组成,各个字段的含义:
特殊字符含义:
要配合springboot用的话
CacheSPEL |
占楼 |
6 similar comments
占楼 |
占楼 |
占楼 |
占楼 |
占楼 |
占楼 |
①--bean的搜索流程 #1
ClassPathXmlApplicationContext 、WebApplicationContext
在置入基础的环境(applicationContext)后 , 注入xml的位置,并解析其中的占位表达式。
refresh() : 加载或者刷新配置的持久层表示
准备context
获取bean factory(DefaultListableBeanFactory)
准备这个context要使用的bean factory
// MessageSource registered (and found for autowiring) as a bean.(不懂 😂 )
允许bean factory的后期处理(然而这一步什么也没做)
在上下文中调用注册为bean的factory processors(2018/1/22)
小记
疑问
The text was updated successfully, but these errors were encountered: