问题描述
- spring集成velocity,项目启动加载不到vm页面是为什么?
-
这是在spring_mvc中的配置:<bean class="org.springframework.web.servlet.view.ResourceBundleViewResolver"> <property name="basename" value="views"></property> </bean> <!-- velocity视图解析器 --> <bean id="velocityViewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"> <property name="cache" value="true"/> <property name="prefix" value="velocity/"/> <property name="suffix" value=".vm"/> </bean> <!-- velocity环境配置 --> <bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer"> <!-- velocity配置文件路径 --> <property name="configLocation" value="/WEB-INF/velocity.properties"/> <!-- velocity模板路径 --> <property name="resourceLoaderPath" value="/WEB-INF/velocity/"/> </bean> 1、项目启动没有错误就是加载不到vm页面,我本意是项目启动就加载/WEB-INF/velocity/下vm页面。 2、怎设置默认加载某个vm页面如:index.vm
时间: 2024-12-09 14:04:25