java
-
Mysql实战练习之简单图书管理系统
目录一、梳理功能二、准备数据库三、构造和数据库相关的实体类书籍用户NormalUser类四、封装数据库相关操作数据库链接操作针对书籍表操作针对用户表的操作编写主逻辑(main方法和login方法)编写...[详细]
2022-04-01 23:43 分类:数据库 Mybatis-plus 查询条件为空不生效问题及解决
目录查询条件为空不生效参数不生效查询条件为空不生效 -- mybatis-plus eq方法 default Children eq(R column, Object val) {[详细]
2022-01-13 09:28 分类:编程语言JetCache 缓存框架的使用及源码分析
目录一、简介为什么使用缓存?使用场景使用规范二、如何使用引入maven依赖添加配置配置说明注解说明@EnableCreateCacheAnnotation@EnableMethodCache@CacheInvalidate@CacheUpdate@CacheRefresh@CachePenetrationPro[详细]
2022-01-12 10:00 分类:编程语言解决微服务中关于用户token处理到的坑
目录关于用户token处理到的坑目前常用的有以下几种方案:微服务服务间调用传递token代码如下RequestInterceptor是feign提供的接口关于用户token处理到的坑[详细]
2021-08-27 10:04 分类:编程语言SpringBoot 钩子接口的实现代码
目录Aware 接口族InitializingBeanBeanPostProcessorBeanFactoryPostProcessorImportSelectorImportBeanDefinitionRegistrarFactoryBeanApplicationListenerApplicationRunnerAware 接口族[详细]
2021-08-24 09:29 分类:编程语言C++实现LeetCode(115.不同的子序列)
[LeetCode] 115. Distinct Subsequences 不同的子序列 Given a string S and a string T, count the number of distinct subsequences of S which equals T.[详细]
2021-07-26 15:31 分类:编程语言-
C++实现LeetCode(104.二叉树的最大深度)
[LeetCode] 104. Maximum Depth of Binary Tree 二叉树的最大深度 Given a binary tree, find its maximum depth.[详细]
2021-07-26 14:12 分类:编程语言C++实现LeetCode(100.判断相同树)
[LeetCode] 100. Same Tree 判断相同树 Given two binary trees, write a function to check if they are the same or not.[详细]
2021-07-26 13:57 分类:编程语言C++实现LeetCode(98.验证二叉搜索树)
[LeetCode] 98. Validate Binary Search Tree 验证二叉搜索树 Given a binary tree, determine if it is a valid binary search tree (BST).[详细]
2021-07-26 13:44 分类:编程语言