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;
}
}
多用户高并发请求的时候会影响结果
标签:test1,String,name,并发,单例,springboot From: https://www.cnblogs.com/iois/p/17649137.html