摘要: resources 目录下 新建文件夹 mapper (个人习惯全路径与Mapper类对应) <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "h 阅读全文
posted @ 2023-09-19 11:37 Leslie_Cheung 阅读(71) 评论(0) 推荐(0) 编辑
摘要: 时间函数: DATEPART([YEAR], date) //获取时间的年 DATEPART([MONTH], date) //获取月 CONVERT([TIME], date) //获取时间 hh:mm:ss CONVERT(转换类型,字段,格式) 转换类型为 varchar 等,格式如下: 10 阅读全文
posted @ 2023-08-02 09:46 Leslie_Cheung 阅读(3) 评论(0) 推荐(0) 编辑
摘要: JSON字符串转Map,JSON格式为 {key:value,key2:value2,......} maven依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2. 阅读全文
posted @ 2023-07-13 15:35 Leslie_Cheung 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 问题描述: Controller 层方法为 static 静态,引入 Service 层时使用 @Autowired 注解自动装配,Controller层方法里无法调用Service层,于是加static修饰Service层的注入 产生错误: 调用Service层进行数据库操作时,注入的Servic 阅读全文
posted @ 2023-07-05 17:08 Leslie_Cheung 阅读(284) 评论(0) 推荐(0) 编辑
摘要: Idea配置Git: 配置Git文件,选择安装的Git路径下的 .exe 文件,点击测试,出现版本弹窗即成功 Idea配置远程仓库: 点击 VCS 选择 Git > Remotes... 更新代码(已有代码,远程仓库有更新,需同步到本地): 两处任选一处,点击即可更新本地代码 提交代码(已有代码,新 阅读全文
posted @ 2023-07-05 16:03 Leslie_Cheung 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一:下载Nginx 官网:http://nginx.org/ 中文网:https://nginx.p2hp.com/ 二:Nginx目录 conf:存放核心配置文件 contrib:存放语法支持脚本 docs:存放文档资料 html:存放静态html文件 logs:存放日志文件 temp:存放临时文 阅读全文
posted @ 2023-05-22 16:30 Leslie_Cheung 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 具体错误如下: Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.7.1, expected version is 1.1.16. 错 阅读全文
posted @ 2023-05-19 15:24 Leslie_Cheung 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 具体错误如下: [08001] [Microsoft][SQL Server Native Client 11.0]Reistry information is corrupt or missing. Make sure the provider is installed and registere 阅读全文
posted @ 2023-05-19 14:47 Leslie_Cheung 阅读(841) 评论(0) 推荐(0) 编辑
摘要: 一、引入依赖 <!--邮件--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> <!--日志--> <d 阅读全文
posted @ 2023-03-09 16:21 Leslie_Cheung 阅读(142) 评论(0) 推荐(0) 编辑
摘要: StopWatch 是 org.springframework.util 包下的类 使用方法: StopWatch sw = new StopWatch("给该StopWatch取个名字,无所吊谓"); sw.start("给这次计时取个名字");//表示开始 sw.stop();//表示结束 注意 阅读全文
posted @ 2023-03-02 17:07 Leslie_Cheung 阅读(54) 评论(0) 推荐(0) 编辑