package com.test.payment; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.scheduling.annotation.EnableScheduling; @SpringBootApplication @EnableScheduling @EnableJpaRepositories(basePackages = "com.test.payment.repository") public class PaymentApplication { public static void main(String[] args) { SpringApplication.run(PaymentApplication.class, args); } }