11 2020 档案

摘要:MySQL中union和order by是可以一起使用的,但是在使用中需要注意一些小问题,下面通过例子来说明。首先看下面的t1表。 1、如果直接用如下sql语句是会报错:Incorrect usage of UNION and ORDER BY。 SELECT * FROM t1 WHERE use 阅读全文
posted @ 2020-11-27 15:34 蹉~跎 阅读(623) 评论(0) 推荐(0)
摘要:@Data相当于@Getter @Setter @RequiredArgsConstructor @ToString @EqualsAndHashCode这5个注解的合集。 通过官方文档,可以得知,当使用@Data注解时,则有了@EqualsAndHashCode注解,那么就会在此类中存在equal 阅读全文
posted @ 2020-11-25 11:06 蹉~跎 阅读(696) 评论(0) 推荐(0)
摘要:原地址:http://tech.dianwoda.com/2017/11/04/gao-xing-neng-te-xing-feng-fu-de-beanying-she-gong-ju-orika/?utm_source=tuicool&utm_medium=referral Bean映射工具选择 阅读全文
posted @ 2020-11-09 16:26 蹉~跎 阅读(264) 评论(0) 推荐(0)
摘要:ModelMapper modelMapper = new ModelMapper();modelMapper.getConfiguration().setFullTypeMatchingRequired(true);modelMapper.getConfiguration().setMatchin 阅读全文
posted @ 2020-11-09 15:23 蹉~跎 阅读(676) 评论(0) 推荐(0)
摘要:“Missing semicolon.” : “缺少分号.”, “Use the function form of \”use strict\”.” : “使用标准化定义function.”, “Unexpected space after ‘-’.” : “在’-'后面不应出现空格.”, “Exp 阅读全文
posted @ 2020-11-02 11:26 蹉~跎 阅读(181) 评论(0) 推荐(0)