摘要: 1.redis-cli.exe 2.shutdown 3.exit 4.redis-server.exe redis.windows.conf 估计是端口绑定没成功最开始的时候 服务器和客户端都启动了 但是存储功能无法实现 所以类似于大关一次 再启动服务就成了 估计用重启电脑也可以吧 阅读全文
posted @ 2023-03-14 12:35 千里兮兮 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-03-12 21:04 千里兮兮 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 什么时候需要用递归: 但业务逻辑明显重复时,并且存在一个量是规律性变少直至终点 就可以考虑到递归算法 需要元素: 递归的逻辑方法:这是最重点,这个方法应该是某一递归层级相邻两级之间的等式,即某一级通过某种函数关系可以和相邻一级产生联系,比如上一级是这一级加一得来 递归终点:必须要有一个量是随着递归的 阅读全文
posted @ 2023-03-10 23:11 千里兮兮 阅读(14) 评论(0) 推荐(0) 编辑
摘要: spring: # 数据源配置 datasource: type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/ 阅读全文
posted @ 2023-03-09 11:47 千里兮兮 阅读(26) 评论(0) 推荐(0) 编辑
摘要: #实现热部署的配置devtools: restart: enabled: true #设置重启的目录 additional-paths: src/main/java #防止项目重新编译后启动报404的问题 poll-interval: 3000 quiet-period: 1000cache: eh 阅读全文
posted @ 2023-03-09 11:47 千里兮兮 阅读(32) 评论(0) 推荐(0) 编辑
摘要: # 开启Knife4j增强模式knife4j: enable: true 阅读全文
posted @ 2023-03-09 11:46 千里兮兮 阅读(85) 评论(0) 推荐(0) 编辑
摘要: logging: level: com: example: spring_mybatis: trace 阅读全文
posted @ 2023-03-09 11:45 千里兮兮 阅读(5) 评论(0) 推荐(0) 编辑
摘要: server: port: 8080mybatis: # #标注mybatis配置文件的位置 # config-location: classpath:mybatis-config.xml #标注待解析的mapper的xml文件位置 mapper-locations: classpath:mappe 阅读全文
posted @ 2023-03-09 11:45 千里兮兮 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1. 2. 3. 阅读全文
posted @ 2023-03-06 19:05 千里兮兮 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 1.读未提交 读取到别人未提交的数据,即脏读 2.读已提交 读取别人已经提交的数据,但是不同时间点读取到的数据可能并不一致,别人可能多次提交了不同的数据,这种即不可重复读 3.可重复读 MySQL默认的事务隔离级别 解决了以上不可重复读的问题,但存在幻读(读的数据没有发生变化,但会出现多出来数据的情 阅读全文
posted @ 2023-03-06 12:30 千里兮兮 阅读(11) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示