spring boot
不秃头的程序员-飞
这个作者很懒,什么都没留下…
展开
-
spring boot 集合MyBatis-Plus 生成代码
spring boot 集合MyBatis-Plus 生成代码项目添加依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.1.1</versio...原创 2020-04-20 19:50:17 · 449 阅读 · 0 评论 -
springboot策略模式登录小demo
springboot策略模式登录小demo策略模式在策略模式(Strategy Pattern)中,一个类的行为或其算法可以在运行时更改。这种类型的设计模式属于行为型模式。在策略模式中,我们创建表示各种策略的对象和一个行为随着策略对象改变而改变的 context 对象。策略对象改变 context 对象的执行算法。场景多种第三方登录登录接口话不多说,直接上代码登录验证接口和实现方法...原创 2020-04-18 11:36:42 · 368 阅读 · 0 评论 -
mysql LocalDateTime 时间类型查询遇到的坑
不知道大家会遇到这种问题没,查询语句如下SELECT*FROM table1WHERE deleted = 0AND start_time >= '2020-04-12T23:59:59.999999998'AND end_time <= ' 2020-04-19T23:59:59.999999998'结果:![在这里插入图片描述](https://img-blo...原创 2020-04-17 17:34:45 · 4347 阅读 · 1 评论 -
spring boot使用 ConstraintValidator 实现接口枚举校验
使用 ConstraintValidator 实现接口枚举校验自定义一个注解类@Target({ElementType.FIELD, ElementType.METHOD, ElementType.ANNOTATION_TYPE})@Retention(RetentionPolicy.RUNTIME)@Constraint(validatedBy = {EnumValidator.clas...原创 2020-04-16 16:36:55 · 1723 阅读 · 0 评论