摘要:
<repositories> <repository> <id>aliyun</id> <url>https://maven.aliyun.com/repository/public</url> <releases> <enabled>true</enabled> </releases> <snap 阅读全文
摘要:
1、insert into 表一 select * from 表二; 2、insert into 表一(字段一,字段二,) select 字段一,字段二 from 表二; 3、insert into 表一(字段一,字段二,字段3) select 字段一,字段二,'常量3' from 表二; 阅读全文
摘要:
frp服务一键安装: https://github.com/MvsCode/frps-onekey https://chenyan98.cn/438.html frp服务端客户端安装: https://www.bilibili.com/read/cv5000254/ 1、云服务器frp安装,执行安装 阅读全文
摘要:
https://www.yuque.com/atguigu/springboot 阅读全文
摘要:
https://blog.csdn.net/weixin_40255793/article/details/80812961 阅读全文
摘要:
https://www.cnblogs.com/weiqihome/p/8922937.html 实现该接口,重写里面afterPropertiesSet方法,在项目初始化Bean时候会执行这个方法 阅读全文
摘要:
加上该注解的方法或类会有带有删除线,表示不建议使用。 阅读全文
摘要:
https://blog.csdn.net/qq_39949109/article/details/80432477 Enum类中为什么构造函数必须是私有的? 枚举被设计成是单例模式,即枚举类型会由JVM在加载的时候,实例化枚举对象,你在枚举类中定义了多少个就会实例化多少个,JVM为了保证每一个枚举 阅读全文
摘要:
阅读全文
摘要:
1、Application 加注解 @EnableAsync 开启异步。 2、需要异步的方法上加注解 @Async。 --不能为静态方法 --调用处不能在同一个类里 https://blog.csdn.net/qq_36827957/article/details/105087856 https:/ 阅读全文