作者 | riemann_
来源 | blog.csdn.net/riemann_/article/details/97698560
controller默认是单例的,不要使用非静态的成员变量,否则会发生数据逻辑混乱。正因为单例所以不是线程安全的。
我们下面来简单的验证下:
package com.riemann.springbootdemo.controller;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @author riemann
* @date 2019/07/29 22:56
*/
@Controller
public class ScopeTestController {
private int num = 0;
@RequestMapping("/testScope")
public void testScope() {
System.out.println(++num);
}
@RequestMapping("/testScope2")
public void testScope2() {
System.out.println(++num);
}
}
我们首先访问 http://localhost:8080/testScope
,得到的答案是1
;然后我们再访问 http://localhost:8080/testScope2
,得到的答案是 2
。
得到的不同的值,这是线程不安全的。
接下来我们再来给controller
增加作用多例 @Scope("prototype")
package com.riemann.springbootdemo.controller;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @author riemann
* @date 2019/07/29 22:56
*/
@Controller
@Scope("prototype")
public class ScopeTestController {
private int num = 0;
@RequestMapping("/testScope")
public void testScope() {
System.out.println(++num);
}
@RequestMapping("/testScope2")
public void testScope2() {
System.out.println(++num);
}
}
我们依旧首先访问 http://localhost:8080/testScope
,得到的答案是1
;然后我们再访问 http://localhost:8080/testScope2
,得到的答案还是 1
。
相信大家不难发现 :
单例是不安全的,会导致属性重复使用。
“推荐一个DD写的SpringBoot基础教程:http://blog.didispace.com/spring-boot-learning-2x/
1、不要在controller中定义成员变量。2、万一必须要定义一个非静态成员变量时候,则通过注解@Scope(“prototype”),将其设置为多例模式。3、在Controller中使用ThreadLocal变量
spring bean作用域有以下5个:
有热门推荐?
1.Java学习路线(基础,源码,项目,实战)2.2019年Java基础学习阶段最新学习视频(限时领取)3.2019年Java高级进阶学习视频(限时领取)4.最新学习资源,看者有份,快来领取吧!5.阿里资深技术专家教你如何快速成长为技术大牛!
关注Java编程指南公众号在后台回复:Java学习,我们为你整理了一份最新完整的学习线路,帮你快速成长。
点赞是最大的支持