springboot 中配置URL rewrite
Posted IT-物语
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot 中配置URL rewrite相关的知识,希望对你有一定的参考价值。
http://blog.jdriven.com/2016/02/urlrewritefilter-load-configuration-with-spring-resourceloader/
urlrewrite.xml放在 resources文件夹下
@Configuration
public class UrlRewriteFilterConfig extends UrlRewriteFilter{
private static final String URL_REWRITE = "classpath:/urlrewrite.xml";
//Inject the Resource from the given location
@Value(URL_REWRITE)
private Resource resource;
//Override the loadUrlRewriter method, and write your own implementation
protected void loadUrlRewriter(FilterConfig filterConfig) throws ServletException {
try {
//Create a UrlRewrite Conf object with the injected resource
Conf conf = new Conf(filterConfig.getServletContext(), resource.getInputStream(), resource.getFilename(), "@@[email protected]@");
checkConf(conf);
} catch (IOException ex) {
throw new ServletException("Unable to load URL rewrite configuration file from " + URL_REWRITE, ex);
}
}
}
以上是关于springboot 中配置URL rewrite的主要内容,如果未能解决你的问题,请参考以下文章