34 lines
1.5 KiB
Java
34 lines
1.5 KiB
Java
package com.webproglabs.lab1;
|
|
|
|
import com.webproglabs.lab1.lab34.OpenAPI30Configuration;
|
|
import org.springframework.boot.web.server.ErrorPage;
|
|
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
|
|
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
|
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
@Configuration
|
|
public class WebConfiguration implements WebMvcConfigurer {
|
|
public static final String REST_API = OpenAPI30Configuration.API_PREFIX;
|
|
@Override
|
|
public void addViewControllers(ViewControllerRegistry registry) {
|
|
WebMvcConfigurer.super.addViewControllers(registry);
|
|
registry.addViewController("login");
|
|
registry.addViewController(SecurityConfiguration.SPA_URL_MASK).setViewName("forward:/");
|
|
registry.addViewController("/notFound").setViewName("forward:/");
|
|
}
|
|
|
|
@Bean
|
|
public WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> containerCustomizer() {
|
|
return container -> container.addErrorPages(new ErrorPage(HttpStatus.NOT_FOUND, "/notFound"));
|
|
}
|
|
|
|
@Override
|
|
public void addCorsMappings(CorsRegistry registry) {
|
|
registry.addMapping("/**").allowedMethods("*");
|
|
}
|
|
} |