35 lines
1.3 KiB
Java
35 lines
1.3 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) {
|
|
//remove after testing
|
|
//add url for a demo html and js project created on Vs code and ran it from go live on right bottim corner user gepafin_dev_local backup DB for gettng notification on FE.
|
|
registry.addMapping("/**").allowedOrigins("http://127.0.0.1:5500", "http://localhost:3000", "http://localhost:5500")
|
|
.allowedMethods("GET", "POST", "PUT", "DELETE", "HEAD").allowCredentials(true);
|
|
}
|
|
}
|
|
|
|
}
|
|
|