Redirect to a different host in Spring Boot (non-www to www URL)

后端 未结 1 1515
失恋的感觉
失恋的感觉 2020-12-20 03:22

I have configured my project with a self signed certificate and have configured to redirect insecure http to https. I also want to redirect a request to a host without a \"<

1条回答
  •  -上瘾入骨i
    2020-12-20 03:59

    I have to answer my own question here as I found out that there is no Java equivalent configuration for this library, as it was last maintained in 2012. The solution is a mix of Java and XML configuration. This configuration can be avoided if you use a reverse proxy server. However, I wanted to avoid that and have the single application server to do all sorts of things. So here it goes:

    The configuration file:

    @Configuration
    public class UrlRewriteConfig extends UrlRewriteFilter {
    
        private UrlRewriter urlRewriter;
    
        @Bean
        public FilterRegistrationBean tuckeyRegistrationBean() {
            final FilterRegistrationBean registrationBean = new FilterRegistrationBean();
            registrationBean.setFilter(new UrlRewriteConfig());
            return registrationBean;
        }
    
        @Override
        public void loadUrlRewriter(FilterConfig filterConfig) throws ServletException {
            try {
                ClassPathResource classPathResource = new ClassPathResource("urlrewrite.xml");
                InputStream inputStream = classPathResource.getInputStream();
                Conf conf1 = new Conf(filterConfig.getServletContext(), inputStream, "urlrewrite.xml", "");
                urlRewriter = new UrlRewriter(conf1);
            } catch (Exception e) {
                throw new ServletException(e);
            }
        }
    
        @Override
        public UrlRewriter getUrlRewriter(ServletRequest request, ServletResponse response, FilterChain chain) {
            return urlRewriter;
        }
    
        @Override
        public void destroyUrlRewriter() {
            if (urlRewriter != null)
                urlRewriter.destroy();
        }
    }
    

    The project structure:

    And the urlrewrite.xml file:

    
    
    
    
        
            SEO Redirect and Secure Channel
            ^example.com
            ^(.*)$
            https://www.example.com$1
        
    
    

    A very important point to be noted, is that I had to remove my insecure http to https redirection in the Undertow Server configuration as it threw an error - "TOO MANY REDIRECTS". So what i did is I kept two ports opened - 80 and 443 for insecure and secure connections and the tuckey configuration does the all sorts of redirection, from http to https and from non-www to www. I hope it helps.

    0 讨论(0)
提交回复
热议问题