spring的controller是单例还是多例,怎么保证并发的安全

更新时间:2023-05-29 16:33:22 阅读: 评论:0

spring的controller是单例还是多例,怎么保证并发的安全controller默认是单例的,不要使⽤⾮静态的成员变量,否则会发⽣数据逻辑混乱。
正因为单例所以不是线程安全的。
我们下⾯来简单的验证下:
package com.ller;
import t.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@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);
}
}
得到的不同的值,这是线程不安全的。
接下来我们再来给controller增加作⽤多例 @Scope("prototype")
package com.ller;
import t.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);
酸菜肉饺子}
描写祖国的诗句}
单例是不安全的,会导致属性重复使⽤。
解决⽅案
1、不要在controller中定义成员变量。
2、万⼀必须要定义⼀个⾮静态成员变量时候,则通过注解@Scope(“prototype”),将其设置为多例模式。
3、在Controller中使⽤ThreadLocal变量
补充说明
spring bean作⽤域有以下5个:
singleton:单例模式,当spring创建applicationContext容器的时候,spring会欲初始化所有的该作⽤域实例,加上lazy-init就可以避免预处理;
prototype:原型模式,每次通过getBean获取该bean就会新产⽣⼀个实例,创建后spring将不再对其管理;
(下⾯是在web项⽬下才⽤到的)
request:搞web的⼤家都应该明⽩request的域了吧,就是每次请求都新产⽣⼀个实例,和prototype不同就是创建后,接下来的管
金黄色的英语
理,spring依然在监听;
ssion:每次会话,同上;
global ssion:全局的web域,类似于rvlet中的application。

本文发布于:2023-05-29 16:33:22,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/807728.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:模式   时候   成员   变量   单例
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图