完成操作日志的记录

This commit is contained in:
YunaiV
2021-01-17 00:28:56 +08:00
parent b6457c0418
commit ec8f181f2f
29 changed files with 691 additions and 261 deletions

View File

@@ -0,0 +1,9 @@
package cn.iocoder.dashboard.framework.async.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableAsync;
@Configuration
@EnableAsync(proxyTargetClass = true)
public class AsyncConfiguration {
}

View File

@@ -0,0 +1,4 @@
/**
* 异步执行,基于 Spring @Async 实现
*/
package cn.iocoder.dashboard.framework.async;

View File

@@ -0,0 +1 @@
<http://www.iocoder.cn/Spring-Boot/Async-Job/?dashboard>