随手记

windows 

后台运行 jar包:

start javaw -jar xxx.jar

查看端口信息:

netstat -aon |findstr "port"

查看进程信息:

tasklist |findstr "pid"

根据进程名称杀掉进程:

taskkill /f /t /im 进程名

spring aop 

Pointcut execution 规则:

"execution(* top.legend.controller..*(*,org.springframework.validation.BindingResult))"

第一位*号为 方法修饰符

两个点: 第一个点代表该包下所有的类,第二个点代表该包下所有的子包类

第三个*代表匹配所有类

(*,)代表第一位所有的参数

类名 代表你要拦截参数的类型,如果为(..)代表拦截所有参数类型

你可能感兴趣的:(随手记)