Третий коммит. Добавление конфигурации.

This commit is contained in:
Павел Сорокин 2023-02-13 15:52:44 +04:00
parent 49451c9143
commit 435333d199

View File

@ -0,0 +1,13 @@
package ru.ulstu.is.sbapp;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebConfiguration implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry)
{
registry.addMapping("/**").allowedMethods("*");
}
}