摘要:
1.下载jar包,放置在idea的bin目录下,传送门 https://files.cnblogs.com/files/dslx/JetbrainsCrack-2.7-release-str.rar 或者百度网盘:https://pan.baidu.com/s/1KV3bACW4kstpeNByZ- 阅读全文
摘要:
Spring事务传播行为有7种: spring的7种传播行为:1.required:(默认传播行为),如果当前有事务,其他就用当前事务,不会新增事务。例如:方法A调用方法B,它们用同一个事务。(如果B没有事务,它们会用同一个事务。)(只要有一个回滚,整体就会回滚) 2.requires_new:如果 阅读全文
摘要:
异常:Transaction rolled back because it has been marked as rollback-only 原因:已经标记为rollback-only,但是后面的程序执行后又commit事务,抛出此异常。虽然都回滚,不影响正常业务。但是日志打印这种异常让人很难受。 阅读全文
摘要:
有两篇博客有图有代码,结合着看可以很容易理解六大设计原则: 参考: https://www.cnblogs.com/shijingjing07/p/6227728.html https://www.jianshu.com/p/3268264ae581 阅读全文
摘要:
springboot整合redisCluster集群:(前提redis集群已经搭建好。windows上搭建redis集群参考:https://www.cnblogs.com/super-chao/p/9329018.html。linux上搭建redis集群步骤和windows上搭建redis集群一致 阅读全文
摘要:
原文参考:https://blog.csdn.net/chengxianxiang0279/article/details/101062461 如下图: 另外在 “窗口” 处还可以选择水平方向或垂直方向 转载于:https://my.oschina.net/u/3495722/blog/153136 阅读全文
摘要:
1.window下安装linux参考:https://www.cnblogs.com/super-chao/p/15140678.html 2.linux版本的redis下载:https://pan.baidu.com/s/1ZMS9il9ciLw92gpudmNygg 提取码:swee 3.因为需 阅读全文
摘要:
原文参考:https://www.cnblogs.com/dxqNet/p/11479395.html 1、ifconfig命令是设置或显示网络接口的程序,可以显示出我们机器的网卡信息,可是有些时候最小化安装CentOS等Linux发行版的时候会默认不安装ifconfig等命令,这时候你进入终端,运 阅读全文
摘要:
此处为了防止页面丢失,原文参考:https://blog.csdn.net/hyd130/article/details/115092347 原因:安装的时候没有选择图形化界面 或者直接安装成了 服务器版本。 1:登录root用户,在root管理员权限下输入 yum groupinstall "X 阅读全文
摘要:
此处是防止网页丢失,原文参考:https://www.cnblogs.com/tijun/p/10784656.html 一、 CentOS 7.6 下载 官网下载地址:https://www.centos.org/download/ 选择Minimal ISO 选择适合自己的下载路径即可。 二、C 阅读全文