SpringBoot26 RestTemplate、WebClient (2)

package cn.xiangxu.test_demo.common.config; import cn.xiangxu.test_demo.domain.domain_do.Student; import cn.xiangxu.test_demo.utils.proxy.JdkProxy; import org.springframework.beans.factory.FactoryBean; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.lang.Nullable; import org.springframework.web.client.RestTemplate; import java.lang.reflect.InvocationHandler; import java.lang.reflect.Method; import java.lang.reflect.Proxy; /** * @author 王杨帅 * @create 2018-08-18 13:07 * @desc 创建Bean的配置类 **/ @Configuration public class BeanConfig { @Bean public RestTemplate restTemplate() { return new RestTemplate(); } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zywxfy.html