随笔分类 - Springboot
Springboot
摘要:服务端 pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <!-- 移除掉默认支持的 Tomcat --> <exclus
阅读全文
摘要:pom.xml <!--feign--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency> <
阅读全文
摘要:springboot微服务之间通常使用feign进行接口调用,那么在此基础上文件上传如何操作呢? 最近项目中碰到了这种需求,此处分享一下使用心得,希望对大家有帮助!!! 一、我这里使用的相关包如下,其它的大家视情况而定 <dependency> <groupId>io.github.openfeig
阅读全文