摘要:
1.redis-cli.exe 2.shutdown 3.exit 4.redis-server.exe redis.windows.conf 估计是端口绑定没成功最开始的时候 服务器和客户端都启动了 但是存储功能无法实现 所以类似于大关一次 再启动服务就成了 估计用重启电脑也可以吧 阅读全文
摘要:
什么时候需要用递归: 但业务逻辑明显重复时,并且存在一个量是规律性变少直至终点 就可以考虑到递归算法 需要元素: 递归的逻辑方法:这是最重点,这个方法应该是某一递归层级相邻两级之间的等式,即某一级通过某种函数关系可以和相邻一级产生联系,比如上一级是这一级加一得来 递归终点:必须要有一个量是随着递归的 阅读全文
摘要:
spring: # 数据源配置 datasource: type: com.alibaba.druid.pool.DruidDataSource driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/ 阅读全文
摘要:
#实现热部署的配置devtools: restart: enabled: true #设置重启的目录 additional-paths: src/main/java #防止项目重新编译后启动报404的问题 poll-interval: 3000 quiet-period: 1000cache: eh 阅读全文
摘要:
# 开启Knife4j增强模式knife4j: enable: true 阅读全文
摘要:
logging: level: com: example: spring_mybatis: trace 阅读全文
摘要:
server: port: 8080mybatis: # #标注mybatis配置文件的位置 # config-location: classpath:mybatis-config.xml #标注待解析的mapper的xml文件位置 mapper-locations: classpath:mappe 阅读全文