ah ok, if you're using VelocityViewResolver you need to set the property there rather than on the views themselves since you're not configuring views individually. This will set the content type for ALL views resolved (which may be what you want, but just to warn you if not).
On your VelocityViewResolver definition, set the bean property as follows:
Code:
<bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
<property name="cache"><value>true</value></property>
<property name="exposeSpringMacroHelpers"><value>true</value></property>
<property name="prefix"><value>srp/</value></property>
<property name="suffix"><value>.vm</value></property>
<property name="contentType"><value>text/html;charset=UTF-8</value></property>
</bean>
Regards,
Darren Davison.
Public Key: 0xE855B3EA