摘要: 1.写好AOP类 @Aspect@Componentpublic class LogAspect { final Logger logger = LoggerFactory.getLogger("aopLog"); //自定义的logger @Pointcut("execution(* com.gk 阅读全文
posted @ 2020-10-30 17:17 豆牙 阅读(250) 评论(0) 推荐(0)
摘要: 前提是SSH已经搞好1.git免密码 打开git bash 输入如下命令: cd ~ touch .git-credentials vim .git-credentials https://{username}:{password}@github.com git config --global cr 阅读全文
posted @ 2020-10-19 09:43 豆牙 阅读(92) 评论(0) 推荐(0)
摘要: Linux中变量#,#,@,0,0,1,2,2,*,$$,$?的含义 $# 是传给脚本的参数个数$0 是脚本本身的名字$1 是传递给该shell脚本的第一个参数$2 是传递给该shell脚本的第二个参数$@ 是传给脚本的所有参数的列表$* 是以一个单字符串显示所有向脚本传递的参数,与位置变量不同,参 阅读全文
posted @ 2020-10-19 09:37 豆牙 阅读(59) 评论(0) 推荐(0)