将spring配置中的velocity view改为:
<bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"> <property name="resourceLoaderPath" value="/WEB-INF/vm/"></property> <property name="velocityProperties"> <props> <prop key="input.encoding">utf-8</prop> <prop key="output.encoding">utf-8</prop> </props> </property> </bean> <bean id="velocityViewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"> <property name="cache" value="true"></property> <property name="suffix" value=".html"></property> <property name="contentType" value="text/html;charset=UTF-8"></property> </bean>
-- EOF --
除非注明(如“转载”、“[zz]”等),本博文章皆为原创内容,转载时请注明: 「转载自程序员的信仰©」
本文链接地址:解决Velocity+Spring的中文乱码问题
Today on history:
【2023】永久禁用iCloud「专用代理」
发表回复