Stella981 Stella981
3年前
SpringBoot 2.0 系列001
SpringBoot2.0系列001入门介绍以及相关概念什么是SpringBoot?项目地址:http://projects.spring.io/springboot/(https://www.oschina.net/action/G
Stella981 Stella981
3年前
Postman实现数字签名,Session依赖, 接口依赖, 异步接口结果轮询
Script(JS)为Postman赋予无限可能基于Postman6.1.4MacNative版演示结合user\_api\_demo(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fhanzhichao%2Fuser_api_demo)
Stella981 Stella981
3年前
Feign请求响应结果被截取com.fasterxml.jackson.core.io.JsonEOFException
在生产环境使用feign调用外部接口时,偶尔会出现下面错误2020101511:00:18,535ERRORcom.shein.abc.rmp.controller.RecExplainConfigControllerrec_explain_query.failffeign.codec.DecodeExc
Wesley13 Wesley13
3年前
10分钟快速入门Redis,从安装到启动配置
Redis安装官方编译安装$wgethttp://download.redis.io/releases/redis4.0.0.tar.gz$tarxzvfredis4.0.0.tar.gzC/usr/local/$cd/usr/local/redis4.0.0$
Stella981 Stella981
3年前
POI导入大excel文件
package me.shanzhi.test;import java.io.InputStream;import java.util.ArrayList;import java.util.Iterator;import java.util.List;import org.apac
可莉 可莉
3年前
200多个js技巧代码(2)
51.向文件中写内容<%@ page import"java.io." %<% String str  "print me"; //always give the path from root. This way it almost always works. String nameOfTex
Easter79 Easter79
3年前
SpringBoot2.0高级案例(02) :整合 RocketMQ ,实现请求异步处理
本文源码:GitHub·点这里(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fcicadasmile%2Fmiddlewareparent)||GitEE·点这里(https://gitee.com/cicadasmile/middleware
Stella981 Stella981
3年前
CentOS7安装Redis最新版 redis
安装下载,解压,编译:$wgethttp://download.redis.io/releases/redis4.0.10.tar.gz$tarxzfredis4.0.10.tar.gz$yuminstallgcc安装gcc依赖$cdredis4.0.10$make
Stella981 Stella981
3年前
200多个js技巧代码(2)
51.向文件中写内容<%@ page import"java.io." %<% String str  "print me"; //always give the path from root. This way it almost always works. String nameOfTex
SpringBoot2.0笔记四
当搞全局捕获异常时可以使用到AOP技术,采用异常通知,也可以用AOP搞日志记录在类上面加上@EnableAsyns注解开启异步调用@Asyns,在方法上加上此注解,可以实现异步调用,底层是多线程技术,相当于加上这个注解的方法重新开启了一个单独的线程正常情况下,当A方法调用B方法时,是需要B方法执行完成,有返回结果时等待返回。这是顺序的方式从上到下执行程序,当使用@Asyns注解时,A方法调用B方法,不用等待B方法执行完成,可以直接向下执行,B方法单独开启一个线程,两个方法同时运行。@Va