Files
authsec_springboot/backend/src/main/java/com/realnet/RealNetApp.java

36 lines
1.2 KiB
Java
Raw Normal View History

2025-03-19 11:18:25 +05:30
package com.realnet;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
import org.springframework.transaction.annotation.EnableTransactionManagement;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@SpringBootApplication
@EnableSwagger2
@EnableTransactionManagement
@EnableJpaAuditing
@EnableCaching
public class RealNetApp extends SpringBootServletInitializer{
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder){
return builder.sources(RealNetApp.class);
}
//
public static void main(String[] args) {
SpringApplication.run(RealNetApp.class, args);
}
}
/*
SpringBoot Notes
@Bean :tells Spring 'here is an instance of this class, please keep hold of it and give it back to me when I ask'.
@Autowired :says 'please give me an instance of this class, for example, one that I created with an @Bean annotation earlier'.
*/