Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- AWS
- springboot
- 테스트 코드
- trouble shooting
- 객체지향원칙
- JPA
- Kafka
- testcode
- Java
- 유효성 검사
- docker
- spring boot
- 어노테이션
- Til
- aop
- Redis
- MSA
- Intellij
- DevOps
- 멀티 모듈
- algorihm
- querydls
- Github Actions
- CI/CD
- EC2
- 프로그래머스
- JWT
- rabbitmq
- swagger
- algorithm
Archives
- Today
- Total
목록testcode (1)
개발노트
25.02.17 JWT 검증 필터 와 테스트 코드 any()
개요프로젝트를 진행하면서 JWT를 검증하는 필터를 구현하였다. 여기서 의문점이 든 부분을 정리하고 검색 기능에 사용할 queryDSL에 대해 공부한걸 정리해보려한다. JWT 검증 필터 의문점 @Bean public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http.csrf(csrf -> csrf.disable()); http.addFilterBefore(new JwtAuthenticationFilter(jwtUtil), UsernamePasswordAuthenticationFilter.class); http.sessionManagement((sessionManage..
Spring Boot
2025. 2. 17. 20:33