这么说其实不规范

spring的bean    默认是单例

springmvc的controller    默认是单例

所以最好不要在controller里定义成员变量

都可通过注解 @scope=prototype  来改变

05-11 22:55