# proxy-tool **Repository Path**: kum2012/proxy-tool ## Basic Information - **Project Name**: proxy-tool - **Description**: 开发工具,反向代理 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2020-12-17 - **Last Updated**: 2022-07-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README SpringBoot实现反向代理 1. 支持配置多个代理 2. 转发任何格式的请求(静态资源、API请求) 3. 代理可以做外部不配置 4. 暂时不支持热加载代理配置文件 代理配置文件Demo ```json [ { "name": "baidu", "servlet_url": "/baidu", "target_url": "https://www.baidu.com" }, { "name": "quark", "servlet_url": "/quark", "target_url": "https://bbs.myquark.cn/" } ] ``` 启动例子 ```shell script $ java -jar proxy-tool-0.0.1-SNAPSHOT.jar --proxy.data=E:\\proxy.json ```