MatchApp.java
598 Bytes
package com.viontech.match;
import com.ulisesbocchio.jasyptspringboot.annotation.EnableEncryptableProperties;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableAsync;
@SpringBootApplication
@EnableAsync
@EnableEncryptableProperties
@ComponentScan(basePackages = {"com.viontech"})public class MatchApp {
public static void main(String[] args) {
SpringApplication.run(MatchApp.class, args);
}
}