随笔分类 -  SpringBoot

摘要:SQL语句: 在java持久层中: 1、Repository 2、Mapper 阅读全文
posted @ 2021-07-29 15:52 聖凯 阅读(181) 评论(0) 推荐(0) 编辑
摘要:数据库中查询出来的为正常的时间格式:yyyy-MM-dd HH:mm:ss,但是后台传给前端的值为时间戳格式 @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone="GMT+8") 其他方法参考:https://blog.csdn.net/qq_415 阅读全文
posted @ 2021-07-29 15:45 聖凯 阅读(829) 评论(0) 推荐(0) 编辑
摘要:分层逻辑: 例如: 页码page,显示数量size; 每页开始:(page - 1) * size 每页结束:page * size 可参考:https://blog.csdn.net/use_admin/article/details/83622414 阅读全文
posted @ 2021-07-29 09:43 聖凯 阅读(29) 评论(0) 推荐(0) 编辑
摘要:@Query(value = " select n.id, n.REAL_NAME name, m.num from " + "(select CREATEUSER,COUNT(CREATEUSER) num from YCNY_USER_ROUTES where CREATETIME BETWEE 阅读全文
posted @ 2021-07-27 16:40 聖凯 阅读(35) 评论(0) 推荐(0) 编辑
摘要:此注解运行时生效 适用范围:构造器,方法,到参数、属性、注解 有一个属性required:用于控制如果找不到要依赖注入的对象时是否报错,默认true即默认找不到要注入的对象时会报错 阅读全文
posted @ 2021-07-21 09:24 聖凯 阅读(91) 评论(0) 推荐(0) 编辑
摘要:mvn install:install-file -DgroupId=com.jacob -DartifactId=jacob -Dversion=1.10 -Dfile=E:\ChromeDownload\jacob-1.10.jar -Dpackaging=jar -DgroupId 设置gro 阅读全文
posted @ 2021-07-19 14:21 聖凯 阅读(103) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202107/2172047-20210716144518489-1442432460.png) 阅读全文
posted @ 2021-07-16 14:46 聖凯 阅读(15) 评论(0) 推荐(0) 编辑
摘要:1、修改时 2、删除时 在实现层中也需要添加注解 阅读全文
posted @ 2021-07-09 10:33 聖凯 阅读(149) 评论(0) 推荐(0) 编辑
摘要:在yml文件中做配置 阅读全文
posted @ 2021-07-09 10:12 聖凯 阅读(39) 评论(0) 推荐(0) 编辑
摘要:一般在实体类中使用 阅读全文
posted @ 2021-07-01 15:52 聖凯 阅读(36) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202107/2172047-20210701080058289-1070901835.png) 阅读全文
posted @ 2021-07-01 08:53 聖凯 阅读(25) 评论(0) 推荐(0) 编辑
摘要:1、 2、 阅读全文
posted @ 2021-06-28 10:24 聖凯 阅读(250) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202106/2172047-20210616080440313-417473314.png) ![](https://img2020.cnblogs.com/blog/2172047/202106/2172047-20210616080515319-416762028.png) 阅读全文
posted @ 2021-06-16 08:06 聖凯 阅读(31) 评论(0) 推荐(0) 编辑
摘要:![](https://img2020.cnblogs.com/blog/2172047/202106/2172047-20210610103708244-978189186.png) 阅读全文
posted @ 2021-06-10 10:37 聖凯 阅读(20) 评论(0) 推荐(0) 编辑
摘要:1、遍历的集合 2、设置查询条件 阅读全文
posted @ 2021-06-10 10:18 聖凯 阅读(130) 评论(0) 推荐(0) 编辑
摘要:环境: jdk1.8 maven3.6.1 springBoot最新 1、更改项目端口号 .properties配置文件:server.port = 端口号 .yml配置文件: server: port: 8081 2、 阅读全文
posted @ 2021-05-19 11:11 聖凯 阅读(37) 评论(0) 推荐(0) 编辑