【Spring Web教程】SpringBoot 实现反向代理和轻量级网关

概括

反向代理:客户端请求服务端,服务端通过转发隐藏真实的地址。

常用解决方案:

1.Nginx

2.SpringCloud 中的网关Gateway、zuul

3.SpringBoot整合smiley-http-proxy-servlet

本文采用第三种方式,该方式在不使用任何中间件的情况实现轻量级网关。

SpringBoot整合smiley-http-proxy-servlet

smiley-http-proxy-servlet是国外开发者开源的Java反向代理库,非常小且轻量,核心代码就100行。其原理是:

1.继承Servlet。获取请求中的请求头、Cookie、请求参数、URL。

2.包装请求类,利用HttpClient发送Http请求。

3.将Http请求设置到HttpServletResponse返回到前端。

相当于smiley-http-proxy-servlet帮助包装了请求和响应。

整合步骤:

1.导入依赖

2.通过ServletRegistrationBean自定义注册Servlet

3.编写路由配置

导入依赖

<dependency>
	<groupId>org.mitre.dsmiley.httpproxygroupId>
	<artifactId>smiley-http-proxy-servletartifactId>
	<version>1.11version>
dependency>

自定义注册Servlet

package com.terry.config;

import lombok.extern.slf4j.Slf4j;
import org.mitre.dsmiley.httpproxy.ProxyServlet;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.HashMap;
import java.util.Map;

/**
 * 代理配置
 * @version 1.0
 * @author terry
 * @date 2022/7/4
 */
@Configuration
@Slf4j
public class ProxyConfig{

    @Bean
    public ProxyServlet proxyServlet(){
        return new ProxyServlet();
    }

    @Bean
    public ServletRegistrationBean terry(@Autowired ProxyServlet proxyServlet) {
        ServletRegistrationBean registrationBean = new ServletRegistrationBean(proxyServlet, "/terrya/");
        //设置网址以及参数
        Map<String, String> params = new HashMap<>();
        params.put("targetUri", "https://terry.com/");
        registrationBean.setInitParameters(params);
        return registrationBean;
    }
}

浏览器访问:http://127.0.0.1:8080/terrya/ 自动代理到https://terry.com/ 地址

你可能感兴趣的:(SpringBoot,spring,前端,spring,boot)