Files
bflows-bandi-be/src/main/java/net/gepafin/tendermanagement/TendermanagementApplication.java
2024-09-20 17:17:04 +05:30

33 lines
1.0 KiB
Java

package net.gepafin.tendermanagement;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@EnableScheduling
@EnableFeignClients
@SpringBootApplication
public class TendermanagementApplication {
public static void main(String[] args) {
SpringApplication.run(TendermanagementApplication.class, args);
System.out.println("Spring Boot started");
}
@Configuration
public class CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**").allowedOrigins("http://localhost:3000")
.allowedMethods("GET", "POST", "PUT", "DELETE", "HEAD").allowCredentials(true);
}
}
}