由spring配置引起的属性保持有关问题
由spring配置引起的属性保持问题?参考地址?http://blog.csdn.net/peng658890/article/details/7233718?ps.
由spring配置引起的属性保持问题
?
参考地址?http://blog.csdn.net/peng658890/article/details/7233718
?
ps. spring的scope
5 types of bean scopes supported :
- singleton – Return a single bean instance per Spring IoC container
- prototype – Return a new bean instance each time when requested
- request – Return a single bean instance per HTTP request. *
- session – Return a single bean instance per HTTP session. *
- globalSession – Return a single bean instance per global HTTP session. *
In most cases, you may only deal with the Spring’s core scope – singleton and prototype, and the default scope is singleton.
P.S * means only valid in the context of a web-aware Spring ApplicationContext
?from?http://www.mkyong.com/spring/spring-bean-scopes-examples/