规则原理
未读
SpringBoot 多模块项目
以开源项目 SmartAdmin 的框架源码中的部分代码举例说明 1. 父模块 删除其他文件,只保留 pom.xml 文件 打包方式 <packaging>pom</packaging> modules 引入子模块 (打包引入的子模块) properties 统一管理依赖版本 <project x
demo
未读
SpringBoot 生成项目脚手架
1. 服务器URL 阿里云-云原生脚手架 https://start.aliyun.com/ Spring.io https://start.spring.io/ 2. IDEA中创建
异常
未读
异常:git clone 克隆成功,但签出失败
1. 问题描述 unable to checkout working tree warning: Clone succeeded, but checkout failed. You can inspect what was checked out with 'git status' and retr
demo
未读
SpringBoot @Scheduled多任务同时执行
1. 说明 默认启动单线程,进行执行定时任务。当多个任务同时进行时,只会执行一个 多任务同时执行需要指定线程池。 添加的代码放在启动类中,或者定时任务类中都可以。 2. 示例代码 import org.springframework.context.annotation.Bean;
import o