今天分享一道Java面试题:
怎么理解Spring MVC Controller线程安全性问题?
查阅相关的资料得到这些知识 分享给大家:
spring生成对象默认是单例(也就是一个对象)的。通过scope属性可以更改为多例。
第一部分:验证Spring生成对象默认是单例的。
下面我们来一个网上的例子验证一下:
1. <bean id="singleton" class="java.util.Date" scope="singleton"></bean>
2. <bean id="prototype" class="java.util.Date" scope="prototype"></bean>
1. package test;
2. import java.util.Date;
3. import org.springframework.context.ApplicationContext;
4. import org.springframework.context.support.ClassPathXmlApplicationContext;
5. import com.opensymphony.xwork2.ActionContext;
6.
7. public class TestScope {
8.
9. public static void main(String[] args) {
10.
11. new ClassPathXmlApplicationContext("applicationContext-web.xml");
12.
13. "singleton");
14.
15. "prototype");
16.
17. "singleton");
18.
19. "prototype");
20.
21. "单例:"+(s1==s2));
22.
23. "非单例:"+(p1==p2));
24.
25. }
26.
27.
28. }
输出结果:
结果
单例:true
非单例:false
注:复合数据类型的“==对比的是内存中存放的地址,所以此处我们采用“==”去对比
因为object中的equals初始行为是比较内存中的地址,但在一些类库中被覆盖掉了如(String,Integer,Date等)
第二部分:SpringMVC和Struts2中是并发访问否会存在线程安全问题。
对于使用过SpringMVC和Struts2的人来说,大家都知道SpringMVC是基于方法的拦截,而Struts2是基于类的拦截。
对于Struts2来说,因为每次处理一个请求,struts就会实例化一个对象;这样就不会有线程安全的问题了;
而Spring的controller默认是Singleton的,这意味着每一个request过来,系统都会用原有的instance去处理,这样导致两个结果:
一是我们不用每次创建Controller,二是减少了对象创建和垃圾收集的时间;由于只有一个Controller的instance,当多个线程调用它的时候,它里面的instance变量就不是线程安全的了,会发生窜数据的问题。
当然大多数情况下,我们根本不需要考虑线程安全的问题,比如dao,service等,除非在bean中声明了实例变量。因此,我们在使用spring mvc 的contrller时,应避免在controller中定义实例变量。
如:
1. public class Controller extends AbstractCommandController {
2. protected Company company;
3. protected ModelAndView handle(HttpServletRequest request,HttpServletResponse response,Object command,BindException errors) throws Exception {
4. company = ................;
5. }
6. }
解决方案:
有几种解决方法:
1、在Controller中使用ThreadLocal变量
2、在spring配置文件Controller中声明 scope="prototype",每次都创建新的controller
所在在使用spring开发web 时要注意,默认Controller、Dao、Service都是单例的。
例如:
1. @Controller
2. @RequestMapping("/fui")
3. public class FuiController extends SpringController {
4. //这么定义的话就是单例
5.
6. @Controller
7. @Scope("prototype")
8. @RequestMapping("/fui")
9. public class FuiController extends SpringController {
10. //每次都创建