http://www.caixin.com/2020-07-01/101574145.html import java.util.Objects; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotat ...
分类:
其他好文 时间:
2020-07-11 17:39:36
阅读次数:
436
在多线程中,有时候需要等待所有线程执行完成后才让继续往下执行,如查询结果汇总等。下面列举两种等待方式: 方式一: 利用 CountDownLatch 类完成。 示例: // 按任务总量创建计数器final CountDownLatch countDownLatch = new CountDownLa ...
分类:
编程语言 时间:
2020-06-09 18:27:15
阅读次数:
72
Configuration 注:建议提前备份所有修改内容,可能会导致无法开机。 我的测试环境: server: windows 10 + windbg client: windows 7 Server Server代表被调式机,修改vmx文件,查找并删除所有serial项,添加以下串口配置: ser ...
分类:
系统相关 时间:
2020-06-06 14:29:01
阅读次数:
94
基于@AspectJ的AOP Spring除了支持Schema方式配置AOP,还支持注解方式:使用@AspectJ风格的切面声明。 一.启用对@AspectJ的支持 Spring默认不支持@AspectJ风格的切面声明,为了支持需要使用如下配置: <aop:aspectj-autoproxy/> 这 ...
分类:
编程语言 时间:
2020-05-08 12:54:16
阅读次数:
64
Springboot学习09:AOP 基础概念图 源码示例 切点 import org.springframework.web.bind.annotation.*; @RestController public class AopController { @GetMapping("/beforeAo ...
分类:
编程语言 时间:
2020-05-05 17:42:10
阅读次数:
81
原文:Nginx知多少系列之(三)配置文件详解 目录 1.前言 2.安装 3.配置文件详解 4.工作原理 5.Linux下托管.NET Core项目 6.Linux下.NET Core项目负载均衡 7.Linux下.NET Core项目Nginx+Keepalived高可用(主从模式) 8.Linu... ...
分类:
其他好文 时间:
2020-04-13 00:37:45
阅读次数:
64
需求 maven依赖 打印sql 配置要点: 1. 驱动配置 application.properties 2. psy配置 aop打印持久层执行时间 使用aop实现; 启用aop注解: 小结 来个效果截图: 通过本片文章,你可以学会: 1. 给代码添加aop切面,增加日志或者打印出方法执行总耗时; ...
分类:
数据库 时间:
2020-02-17 01:18:31
阅读次数:
120
动态代理四种增强方式 先创建一个service类 package com.zzj.calculatar.service; import org.springframework.stereotype.Service; @Service public class CalculatorService im ...
分类:
其他好文 时间:
2020-02-04 23:26:48
阅读次数:
100
执行时机:在HandlerInterceptor @Pointcut("execution(* com.jbs.oms.aggreg.web.controller.*.*.*(..))")private void excudeController() {} @Before("excudeContro ...
分类:
Web程序 时间:
2020-01-03 23:27:14
阅读次数:
194
https://blog.51cto.com/smoke520/2160073 在Linux系统下获取sysstat-10.0.5.tar.gz的两种方式: 方式一: 下载sysstat-10.0.5.tar.gz到本地 通过CRT使用rz命令上传 方式二: #wget http://sebasti ...
分类:
系统相关 时间:
2020-01-01 09:36:39
阅读次数:
100