上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页
摘要: <p><strong>转载出处:</strong><a href="https://www.cnblogs.com/ajing2018/p/14281700.html">https://www.cnblogs.com/ajing2018/p/14281700.html</a></p> Builder 阅读全文
posted @ 2021-11-04 09:11 LilLazy 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 转载出处: https://blog.csdn.net/weixin_44684812/article/details/111151839 假如我们有一张user表,现需要通过user_name查出所有数据 @ApiModel(description = "用户实体") public class U 阅读全文
posted @ 2021-11-03 14:41 LilLazy 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 想实现的效果 实现方法 <el-autocomplete v-model="detail.CUSTOMER_NAME" :fetch-suggestions="querySearchAsync" @select="handleSelect" placeholder="请输入内容"></el-auto 阅读全文
posted @ 2021-10-30 11:17 LilLazy 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 【转载出处】https://segmentfault.com/a/1190000011712893 spring-boot中可以用@validated来校验数据,如果数据异常则会统一抛出异常,方便异常中心统一处理。比如,我们判断一个输入参数是否合法,可以用如下方式 一 基础使用 因为spring-b 阅读全文
posted @ 2021-10-13 10:46 LilLazy 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 在我们写controller或者Service层的时候,需要注入很多的mapper接口或者另外的service接口,这时候就会写很多的@AutoWired注解 lombok提供了一个注解: @RequiredArgsConstructor(onConstructor =@__(@Autowired) 阅读全文
posted @ 2021-10-13 09:07 LilLazy 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: /** * 公共字段*/ @Getter @Setter public class BaseEntity implements Serializable { private static final long serialVersionUID = 1L; @TableField(value = "c 阅读全文
posted @ 2021-10-11 15:35 LilLazy 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 1.查询语句如下: Select CONCAT( 'drop table ', table_name, ';' ) FROM information_schema.tables Where table_name LIKE '%help%'; 【注:help是表名搜索的关键字】 2.结果如下 【注:相 阅读全文
posted @ 2021-10-09 13:42 LilLazy 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 转载出处: https://www.cnblogs.com/l-y-h/p/12859477.html 阅读目录 一、MyBatis-Plus 1、简介 2、使用 SpringBoot 快速使用 MyBatis-Plus 二、Mybatis-Plus 常用操作 1、配置日志 2、简单认识一下常用注解 阅读全文
posted @ 2021-09-16 09:32 LilLazy 阅读(587) 评论(0) 推荐(0) 编辑
摘要: 转载出处: https://www.cnblogs.com/lanyangsh/p/10089672.html 在MySQL配置主从关系时,会用到start slave, stop slave命令,本文简单介绍两个命令的使用方法和作用。 start slave mysql> start slave 阅读全文
posted @ 2021-09-07 16:19 LilLazy 阅读(481) 评论(0) 推荐(0) 编辑
摘要: maven多moudle项目 父pom没有子moudle 就会出现多root目录 如果不行,关闭idea,重新打开项目即可 阅读全文
posted @ 2021-09-07 14:07 LilLazy 阅读(353) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 14 下一页