03 2020 档案
摘要:使用工具类处理调用 直接调用就不会走代理了 @Component public class SpringContextUtil implements ApplicationContextAware { // Spring应用上下文环境 private static ApplicationContex
阅读全文
摘要:引入 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependency> <group
阅读全文
摘要:设置编码为utf-8 最好设置一下 我的刚开始没设置是正常的,换了台电脑就乱码了 Charset charset = StandardCharsets.UTF_8; @Bean public RestTemplate restTemplate(){ RestTemplate restTemplate
阅读全文