BookingSystemAppApplication.java

package com.aleprimo.Booking_System_App;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.web.config.EnableSpringDataWebSupport;

@EnableSpringDataWebSupport(pageSerializationMode = EnableSpringDataWebSupport.PageSerializationMode.VIA_DTO)
@SpringBootApplication
public class BookingSystemAppApplication {

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

}