swt23w23/src/main/java/catering/Application.java

56 lines
1.9 KiB
Java
Raw Normal View History

// SPDX-License-Identifier: Apache-2.0 AND AGPL-3.0-or-later
// SPDX-FileCopyrightText: 2014-2023 the original author or authors.
// SPDX-FileCopyrightText: 2023 swt23w23
2023-11-05 10:54:42 +01:00
package catering;
2023-10-05 11:42:24 +02:00
import org.salespointframework.EnableSalespoint;
import org.springframework.boot.SpringApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configurers.HeadersConfigurer.FrameOptionsConfig;
import org.springframework.security.web.SecurityFilterChain;
2023-11-06 19:48:33 +01:00
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
2023-10-05 11:42:24 +02:00
/**
* The main application class.
*/
@EnableSalespoint
public class Application {
/**
* The main application method
2023-11-15 15:35:53 +01:00
*
2023-10-05 11:42:24 +02:00
* @param args application arguments
*/
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@Configuration
static class WebSecurityConfiguration {
@Bean
2023-11-06 19:48:33 +01:00
SecurityFilterChain WebSecurity(HttpSecurity http) throws Exception {
2023-10-05 11:42:24 +02:00
return http
.headers(headers -> headers.frameOptions(FrameOptionsConfig::sameOrigin))
.csrf(csrf -> csrf.disable())
2023-11-06 19:48:33 +01:00
.formLogin(login -> login.loginPage("/login").loginProcessingUrl("/login"))
2023-10-05 11:42:24 +02:00
.logout(logout -> logout.logoutUrl("/logout").logoutSuccessUrl("/"))
.exceptionHandling(exceptionHandling -> exceptionHandling.accessDeniedPage("/unauthorized"))
2023-10-05 11:42:24 +02:00
.build();
}
}
2023-11-06 19:48:33 +01:00
@Configuration
static class WebConfiguration implements WebMvcConfigurer {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/login").setViewName("login");
registry.addViewController("/").setViewName("index");
}
}
2023-10-05 11:42:24 +02:00
}