我的ActionResponse代码是:

@Component
@Scope(value = "request",proxyMode = ScopedProxyMode.TARGET_CLASS)
public class ActionResponse{
   public int a;
//body
}


我的控制器:

@Controller
@RequestMapping(value="/ajax/discussion")
public class DiscussionController extends AbstractController {

    @Autowired
    private ActionResponse actionResponse;

    public void setActionResponse(ActionResponse actionResponse) {
        this.actionResponse = actionResponse;
    }

    @RequestMapping("/test")
    public @ResponseBody String test(){
        String response=this.actionResponse.a+"";
        if(this.actionResponse.a==0)
            this.actionResponse.a=10;
        return response;
    }

}


我启动项目,然后第一次请求/ ajax / discussion / test时显示0

但是在其他请求之后显示10

由于ActionResponse的请求范围,它必须在每个请求中显示0

问题是:
为什么不在每个请求中都创建一次bean(ActionResponse)?!

最佳答案

CGLIB在班级上工作。

CGLIB代理仍然是单例,因此它继承了基类的字段。更改其公共属性时,将更改单例的值。

您应该将数据更改封装在公共获取器和设置器中。

09-09 17:53