Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
04-27 20:12
- Today
- Total
Tags
- 스프링 빈 조회
- 라즈베리파이4
- 싱글톤 컨테이너
- RequiredArgsConstructor
- 생성자 주입
- 빈 중복 오류
- autowired
- beandefinition
- Servlet Filter
- UsernamePasswordAuthenticationFilter
- 도커
- DI
- 스프링 Configuration
- Spring interceptor
- qualifier
- 의존관계 주입
- DI컨테이너
- 스프링 컨테이너
- 객체지향
- 롬복 Qualifier
- 스프링 빈
- Autowired 옵션
- 라즈베리파이
- HandlerMethodArgumentResolver
- docker
- Spring
- ComponentScan
- 스프링
- 스프링 싱글톤
- springsecurity
Archives
목록springsecurity (1)
그날그날 공부기록

스프링 시큐리티 설정 @Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { http .formLogin().disable() .httpBasic().disable() .csrf().disable() .headers().frameOptions().disable() .and() .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS) .and() .authorizeHttpRequests() .requestMatchers("/", "/css/**", "/images/**", "/js/**", "/favicon.ico", "/h2-conso..
Spring 공부
2023. 9. 25. 17:36