zjj
7 天以前 b60d6c1abc9a41456c683a79d4ee27e7bdf7071b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.vincent.rsf.server.api.config;
 
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.client.RestTemplate;
 
/**
 * @author Ryan
 * @version 1.0
 * @title RestTemplateConfig
 * @description
 * @create 2025/3/7 10:01
 */
 
@Configuration
public class RestTemplateConfig {
 
    @Bean
    public RestTemplate getInstant() {
        return  new RestTemplate();
    }
}