JsonPath
小于 1 分钟
JAR 文件是一种 Java 归档文件,可以包含多个 Java 类文件、资源文件和其他文件。
Java 中的 java.util.jar.JarOutputStream
类是用于创建和输出 JAR 文件的输出流。
JarOutputStream 类提供了一系列方法来向 JAR 文件中写入条目(Entry,JarEntry extends ZipEntry
)并设置相关属性。
使用场景:
参考:
历史:
JDK IO 使用
todo https://howtodoinjava.com/java/io/outputstream-to-inputstream/
todo
Java BIO INPUTSTREAM/OUT/READER/WRITER/FILE/PIP/ZIP JAVA NIO FileChannel/bytebuffer/mapbytebuffer JAVA NIO2.0 PATHS/FILES/WATCH/
参考: https://www.bilibili.com/list/watchlater?
Java 语言编写的 API 模拟工具
支持多种协议,可在单元测试中使用,也可单独部署
资料:
参考:
参考:
官网:
参考:
三种配置方式
Java 对象和 JSON 数据之间进行转换。
核心概念、基本用法、高级配置及处理集合类型的数据。
参考:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.3</version>
</dependency>
序列化/反序列化
接口日志
@Aspect
@Component
@Order(1000)
@Slf4j
public class LogInfoAspect {
/**
* 通过 @Pointcut 注解声明频繁使用的切点表达式
*/
@Pointcut("execution(* com.example.demo..*.*(..))")
public void AspectController() {
}
@Pointcut("execution(* com.example.demo..*.*(..))")
public void AspectController2() {
}
/**
* 先执行、先退出
*/
@Around("AspectController() || AspectController2()")
public Object doAround(ProceedingJoinPoint pjp) throws Throwable {
log.debug("环绕前");
MethodSignature methodSignature = (MethodSignature) pjp.getSignature();
pjp.getTarget();
LogAnnotation logAnnotationClass = pjp.getTarget().getClass().getAnnotation(LogAnnotation.class);
LogAnnotation logAnnotationMethod = pjp.getTarget().getMethod().getAnnotation(LogAnnotation.class);
if (logAnnotationClass == null && logAnnotationMethod == null) {
return pjp.proceed();
}
LogAnnotation logAnnotation = ObjectUtils.defaultIfNull(logAnnotationMethod, logAnnotationClass);
StopWatch sw = new StopWatch();
String className = pjp.getTarget().getClass().getName();
String methodName = methodSignature.getName();
if (logAnnotation.parameter()) {
log.info("{}:{}:parameter:{}", className, methodName, pjp.getArgs());
}
sw.start();
Object result = null;
try {
result = pjp.proceed();
} catch (Throwable e) {
if (logAnnotation.exception()) {
log.warn(e.getMessage(), e);
}
throw e;
}
if (logAnnotation.result()) {
log.info("{}:{}:result:{}", className, methodName, result);
}
sw.stop();
if (logAnnotation.totalConsume()) {
log.info("{}:{}:totalConsume:{}s", className, methodName, sw.getTotalTimeSeconds());
}
log.debug("环绕后");
return result;
}
}