mirror of
https://github.com/zfile-dev/zfile.git
synced 2025-04-19 05:34:52 +00:00
20 lines
576 B
Java
20 lines
576 B
Java
package im.zhaojun;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cache.annotation.EnableCaching;
|
|
import org.springframework.context.annotation.EnableAspectJAutoProxy;
|
|
import org.springframework.scheduling.annotation.EnableAsync;
|
|
|
|
@EnableAsync
|
|
@SpringBootApplication
|
|
@EnableCaching
|
|
@EnableAspectJAutoProxy(exposeProxy = true)
|
|
public class ZfileApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(ZfileApplication.class, args);
|
|
}
|
|
|
|
}
|