1
昨天 4f47f94957e67df0864930a2f638e9bdc8411b36
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();
    }
}