swt23w23/src/main/java/kickstart/Application.java

56 lines
1.8 KiB
Java
Raw Normal View History

2023-10-05 11:42:24 +02:00
/*
* 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 kickstart;
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;
/**
* 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
SecurityFilterChain videoShopSecurity(HttpSecurity http) throws Exception {
return http
.headers(headers -> headers.frameOptions(FrameOptionsConfig::sameOrigin))
.csrf(csrf -> csrf.disable())
.formLogin(login -> login.loginProcessingUrl("/login"))
.logout(logout -> logout.logoutUrl("/logout").logoutSuccessUrl("/"))
.build();
}
}
}