microservicios-spring / payment-service / src / main / java / edu / unimagdalena / paymentservice / PaymentServiceApplication.java
PaymentServiceApplication.java
Raw
package edu.unimagdalena.paymentservice;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cache.annotation.EnableCaching;

@SpringBootApplication
@EnableCaching
public class PaymentServiceApplication {

    public static void main(String[] args) {
        SpringApplication.run(PaymentServiceApplication.class, args);
    }

}