springboot 单例并发问题

Controller默认是单例的,不要使用非静态的成员变量,否则会发生数据逻辑混乱。 正因为单例所以不是线程安全的。

@RestController
@RequestMapping(value = "/concurrency")
public class controller {

    private String name;

    @GetMapping("/test1")
    public String test1(@RequestParam(required = false,defaultValue = "default") String name){
        this.name = name;
        try {
            Thread.currentThread().sleep(1000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        // 多用户并发请求时会相互影响
        return this.name;
    }
}

多用户高并发请求的时候会影响结果

posted @ 2023-08-22 17:25  clq.lib  阅读(153)  评论(0编辑  收藏  举报