Spring采用velicity视图时,使用@SessionAttributes("")注解出现Cannot expose session attribute 'user' because of an existing model object of the same name异常问题
错误原因:
因为request session默认是不会加入velicity context中的,所以要配置上
exposeRequestAttributes和exposeSessionAttributes.但是问题来了,往session加入重复值是就会出现 because of an existing model object of the same name异常,
解决方法是:添加属性
**VelocityViewResolver配置
**