|
@@ -0,0 +1,19 @@ |
|
|
|
|
|
package com.xkcoding.cache.multilevel; |
|
|
|
|
|
|
|
|
|
|
|
import org.springframework.boot.SpringApplication; |
|
|
|
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* <p> |
|
|
|
|
|
* 启动器 |
|
|
|
|
|
* </p> |
|
|
|
|
|
* |
|
|
|
|
|
* @author yangkai.shen |
|
|
|
|
|
* @date 2022-10-11 10:40 |
|
|
|
|
|
*/ |
|
|
|
|
|
@SpringBootApplication |
|
|
|
|
|
public class MultilevelCacheApplication { |
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
|
|
SpringApplication.run(MultilevelCacheApplication.class, args); |
|
|
|
|
|
} |
|
|
|
|
|
} |