摘要:
1、查看日志 前 n行: cat 文件名 | head -n 数量 demo: cat test.log | head -n 200 # 查看test.log前200行 2、查看日志 尾 n行: cat 文件名 | tail -n 数量 demo: cat test.log | tail -n 20 阅读全文
摘要:
相同点: 二者都是用来自动装配bean的,都可以写在字段上或者写在setter方法上,如果写在字段上就可以不用谢setter上。@Resource并不是spring的注解,但是spring支持该注解导入。他是javax.annotation.Resource包下的,需要导入。 不同点: 1、@Aut 阅读全文
摘要:
链接为: 阅读全文