MatchApp.java
523 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;
@SpringBootApplication
@EnableEncryptableProperties
@ComponentScan(basePackages = {"com.viontech"})public class MatchApp {
public static void main(String[] args) {
SpringApplication.run(MatchApp.class, args);
}
}