SpringMVC整合Velocity--unable to find resource '.htm.vm' in any resource loader问题解决

一.问题描述
       在SpringMVC整合Velocity应用中,当请求URL带有文件扩展名时,例如URI: /index.htm,在日志中可能会出现Velocity VM资源无法找到的ERROR提示,如下:org.apache.velocity : ResourceManager : unable to find resource 'index.htm.vm' in any resource loader,控制台报扩展名资源无法找到的问题。

二.原因
       在SpringMVC应用中,当前请求URL带有文件扩展名时,org.springframework.web.servlet.view.ContentNegotiationManager 将添加org.springframework.web.accept.ServletPathExtensionContentNegotiationStrategy 作为默认文件扩展名获取策略。模板定位处理(resolve)的过程中,无论View是否被找到,org.springframework.web.servlet.view.ContentNegotiatingViewResolver 都会再次去获取带有扩展名的模板资源路径。因此,该资源有可能无法找到,Velocity 将以日志的方式来提示用户:

org.apache.velocity : ResourceManager : unable to find resource 'index.htm.vm' in any resource loader.

三.解决方案
       添加配置类MyWebMvcConfigurer即可解决:

@Component
public class MyWebMvcConfigurer extends WebMvcConfigurerAdapter {
    
    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer.favorPathExtension(false);
    }

}

 

你可能感兴趣的:(JavaWeb)