WechatConfiguration.java 348 B

1234567891011121314
  1. package com.boman.wechat.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.client.RestTemplate;
  5. @Configuration
  6. public class WechatConfiguration {
  7. @Bean
  8. public RestTemplate initRestTemplate() {
  9. return new RestTemplate();
  10. }
  11. }