07 2022 档案
摘要:https://www.jianshu.com/p/b96c5fcc17d3
阅读全文
摘要:启动脚本(一): nohup java -jar /export/APPs/smartcourt-devicemqtt-0.0.1-SNAPSHOT.jar >/export/Logs/devicemqtt.txt & 注意:smartcourt-devicemqtt-0.0.1-SNAPSHOT.
阅读全文
摘要:1.LocalDateTime转为yyyy-MM-dd HH:mm:ss LocalDateTime time1 = LocalDateTime.now(); String = time1.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss
阅读全文
摘要:delete from testtable where id in( #为了解决You can‘t specify target table ‘test‘ for update in FROM clause错误 select id from ( #找出所有符合删除条件的id select id fr
阅读全文
摘要:1.原理 Feign 是一个 Java 到 HTTP 的客户端绑定器,灵感来自于 Retrofit 和 JAXRS-2.0 以及 WebSocket。Feign 的第一个目标是降低将 Denominator 无变化的绑定到 HTTP APIs 的复杂性,而不考虑 ReSTfulness。 Feign
阅读全文
摘要:1.菜单管理页面设计 1.1业务设计 菜单管理又称为资源管理,是系统资源对外的表现形式。本模块主要是实现对菜单进行添加、修改、查询、删除等操作。 CREATE TABLE `sys_menus` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varch
阅读全文
摘要:1:https://www.jianshu.com/p/be0273fbf2fa 2:https://blog.csdn.net/jike11231/article/details/124630755
阅读全文
摘要:在我们写controller或者Service层的时候,需要注入很多的mapper接口或者另外的service接口,这时候就会写很多的@Autowired注解,代码看起来很乱 lombok提供了一个注解: @RequiredArgsConstructor(onConstructor =@_(@Aut
阅读全文
expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: {} 注入失败,解决方案
摘要:把@Autowired 改成以下: @Autowired(required = false) @Autowired(required=false):表示忽略当前要注入的bean,如果有直接注入,没有跳过,不会报错。 在容器的启动过程中,会初始化很多bean,这也是spring的核心之一(IOC)。但
阅读全文
摘要:MyBatis Plus 通过实体获取表名 TableName,还是挺方便的,使用SqlHelper工具类即可, 代码如下: SqlHelper.table(SysUser.class).getTableName()
阅读全文
摘要:关于发号器的使用,其实有一个大背景,那就是关于主键的一些设计问题,在MySQL中如果一张表没有主键,实际的数据处理就有点麻烦了。 因为在InnoDB存储引擎中,表都是按照主键的顺序进行存放的,我们叫做聚簇索引表或者索引组织表(IOT) 显式的创建主键Primary key。 判断表中是否有非空唯一索
阅读全文
摘要:截掉 15825008894939184 前三位 长度,保留158后边的值: UPDATE org_employee SET id=SUBSTRING(id,4) WHERE id IN (15825008894939184,15825019871432705,15825024606801933);
阅读全文
摘要:第一种:安装cronolog Mac brew install cronolog Linux Download (the latest version ) wget http://cronolog.org/download/cronolog-1.6.2.tar.gz Unzip tar zxvf c
阅读全文
摘要:执行一下脚本即可: git rm -r --cached . git add . git commit -m 'update .gitignore' git rm -r --cached . git add . git commit -m 'update .gitignore' git push
阅读全文