in-mem cache
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 36s

This commit is contained in:
Lee
2024-06-26 21:29:31 +01:00
parent 52e5d50782
commit 6119da81bf
6 changed files with 15 additions and 13 deletions

View File

@ -7,6 +7,7 @@ import lombok.SneakyThrows;
import lombok.extern.log4j.Log4j2;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.scheduling.annotation.EnableScheduling;
import java.io.File;
@ -14,7 +15,7 @@ import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.util.Objects;
@EnableScheduling
@EnableScheduling @EnableCaching
@SpringBootApplication
@Log4j2(topic = "Ember")
public class BatApplication {