• 2024-11-03【Spring编程常见错误50例】02.原型bean被固定
    Demo如下所示,通过将ServiceImplScope设置为原型,但是在每次调用接口获取的时候返回的都是同一个实例。显然是不符合我们预期。@RequestMapping(path="/hiScope",method=RequestMethod.GET)publicStringhiScope(){return"hiScope"+serviceImpl