Centos系统信息 123cat /etc/redhat-releaseCentOS Linux release 7.2.1511 (Core) 安装docker-compose1yum install docker-compos...
Manjaro下修改grub启动背景
方法一安装工具grub customizer 设置外观 方法二首先,找一张自己喜欢的图片,png格式manjaro使用的主题位置/usr/share/grub/themes/manjaro 复制图片到指定位置1sudo cp bac...
Arch Linux 清理包
删除孤立软件包(注意可能会清理一些还在使用的包,例如yarn) 1sudo pacman -Rns $(pacman -Qdtq) 如果没有孤立软件包,将显示错误 error: no targets specified. 这个是正常...
Spring事务配置
Spring 事务的隔离性1234567891011121314151617事务隔离级别:@Transactional(isolation = Isolation.READ_UNCOMMITTED)读取未提交数据(会出现脏读, 不可...
SpringMVC AOP
spingmvc配置AOP有两种方式,一种是利用注解的方式配置,另一种是XML配置实现。 注解方式依赖环境12345678910111213141516<dependency> <groupId>or...