AdminDentaireServicesApplication.java
package com.sintia.ffl.admin.dentaire.services;
import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
@EnableAsync
@EnableBatchProcessing
@SpringBootApplication(scanBasePackages = "com.sintia.ffl.admin.dentaire")
public class AdminDentaireServicesApplication {
public static void main(String[] args) {
SpringApplication.run(AdminDentaireServicesApplication.class, args);
}
}