码迷,mamicode.com
首页 > 编程语言 > 详细

springboot 中配置URL rewrite

时间:2017-10-12 21:39:50      阅读:2338      评论:0      收藏:0      [点我收藏+]

标签:inject   exception   load   filter   prot   inpu   sources   rri   ble   

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(), "@@traceability@@");
checkConf(conf);
} catch (IOException ex) {
throw new ServletException("Unable to load URL rewrite configuration file from " + URL_REWRITE, ex);
}
}
}

springboot 中配置URL rewrite

标签:inject   exception   load   filter   prot   inpu   sources   rri   ble   

原文地址:http://www.cnblogs.com/he0xff/p/7657824.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!