上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 232 下一页
摘要: @Configuration public class ScheduleRestConfigurer { @Bean public RestTemplate restTemplate() { RestTemplate restTemplate = new RestTemplate(httpReque 阅读全文
posted @ 2021-01-21 19:39 牧之丨 阅读(1118) 评论(0) 推荐(0)
摘要: @ApiModel 使用场景 在实体类上边使用,标记类时swagger的解析类 概述 提供有关swagger模型的其它信息,类将在操作中用作类型时自动内省 属性 属性名称数据类型默认值说明 value String 类名 为模型提供备用名称 description String “” 提供详细的类描 阅读全文
posted @ 2021-01-21 01:08 牧之丨 阅读(2444) 评论(0) 推荐(0)
摘要: 场景: 在做接口时,有的时候,接口入参只需要一个参数,如果将一个参数封装成一个对象很麻烦,故有了以下方式: 思路: spring自带的参数解析器貌似是不具备这个能力的,所有自定义 方式方法: 1.定义一个注解 @Target(ElementType.PARAMETER) @Retention(Ret 阅读全文
posted @ 2021-01-21 00:57 牧之丨 阅读(672) 评论(0) 推荐(0)
摘要: 由于项目将原有的 Date类型的字段改造为 LocalDate,LocalDateTime,LocalTime 类型, 发现 spring 对项目的时间格式无法自动转换,故需手动配置下。 在spring boot 中需在 maven 中引入 jsr-310 的支持 <dependency> <gro 阅读全文
posted @ 2021-01-20 21:48 牧之丨 阅读(1048) 评论(0) 推荐(0)
摘要: 踩坑: 直接实现该接口,发现进入该类后的entity已经重新处理updateTime了,但是更新数据库的时候,却不带updateTime更新。 原因: 由于对该接口等认识不足导致。 解决方案: 实体类中需要添加注解:fill = FieldFill.INSERT_UPDATE 代码: /** * 更 阅读全文
posted @ 2021-01-20 20:16 牧之丨 阅读(685) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/sweetchildomine/p/9158882.html 在SpringBoot 2.0 以前,我们会配置以下类 * @date 2018/06/03 */ @Configuration public class WebMvcConfig exte 阅读全文
posted @ 2021-01-20 14:17 牧之丨 阅读(247) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/justry_deng/article/details/80828180 关于事物的基本概念等这里就不介绍了。 Spring声明式事物的实现,有两种方式;第一种是配置xml,第二种是使用相关注解(这两种方式可详见《程序员成长笔记(一)》的相关章节)。Spr 阅读全文
posted @ 2021-01-20 09:59 牧之丨 阅读(136) 评论(0) 推荐(0)
摘要: 一、注解的方式 1. 在Spring boot工程的主入口类中加入注解 // 开启事务支持 @EnableTransactionManagement 1 2 2. 在需要事务支持的服务类(class)或方法(method)上,加上注解并设置其属性 /* * 表明该类(class)或方法(method 阅读全文
posted @ 2021-01-20 09:55 牧之丨 阅读(538) 评论(0) 推荐(0)
摘要: ConditionQueryWrapper package com.common.util; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import org.apache.commons.lang3.Obj 阅读全文
posted @ 2021-01-19 19:37 牧之丨 阅读(1161) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/fanxiaobin577328725/article/details/71601760 一、简介 项目首 页:http://p6spy.github.io/p6spy/ GitHub下载介绍页面:https://github.com/p6spy/p6sp 阅读全文
posted @ 2021-01-19 14:29 牧之丨 阅读(655) 评论(0) 推荐(0)
上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 232 下一页