AppConfig.java 382 B

1234567891011121314151617181920
  1. package com.zhentao.common;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.client.RestTemplate;
  5. /**
  6. * @date: 2025/5/20 11:10
  7. * @author: ftt
  8. */
  9. @Configuration
  10. public class AppConfig {
  11. @Bean
  12. public RestTemplate restTemplate() {
  13. return new RestTemplate();
  14. }
  15. }