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);
    }

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值