/* * Copyright 2014-2023 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package catering; 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; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; /** * The main application class. */ @EnableSalespoint public class Application { /** * The main application method * * @param args application arguments */ public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Configuration static class WebSecurityConfiguration { @Bean SecurityFilterChain WebSecurity(HttpSecurity http) throws Exception { return http .headers(headers -> headers.frameOptions(FrameOptionsConfig::sameOrigin)) .csrf(csrf -> csrf.disable()) .formLogin(login -> login.loginPage("/login").loginProcessingUrl("/login")) .logout(logout -> logout.logoutUrl("/logout").logoutSuccessUrl("/")) .exceptionHandling(exceptionHandling -> exceptionHandling.accessDeniedPage("/unauthorized")) .build(); } } @Configuration static class WebConfiguration implements WebMvcConfigurer { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/login").setViewName("login"); registry.addViewController("/").setViewName("index"); } } }