I want to include another suffix for viewResolver. How can I do that? For example right now it has the suffix value ".vm" but I also want to include ".vm.test". I tried creating another bean with the same ID and I got duplicate ID error.
<bean id="viewResolver"
class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
<property name="cache" value="false" />
<property name="prefix" value="" />
<property name="suffix" value=".vm" />
</bean>