We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7550c29 + ffc79bb commit 9273611Copy full SHA for 9273611
docs/system-design/framework/spring/spring-common-annotations.md
@@ -125,7 +125,7 @@ public Person personSingleton() {
125
- singleton : 唯一 bean 实例,Spring 中的 bean 默认都是单例的。
126
- prototype : 每次请求都会创建一个新的 bean 实例。
127
- request : 每一次 HTTP 请求都会产生一个新的 bean,该 bean 仅在当前 HTTP request 内有效。
128
-- session : 每一次 HTTP 请求都会产生一个新的 bean,该 bean 仅在当前 HTTP session 内有效。
+- session : 每一个 HTTP Session 会产生一个新的 bean,该 bean 仅在当前 HTTP session 内有效。
129
130
#### 2.5. `@Configuration`
131
0 commit comments