일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Boot
- Docker
- springboot
- @RequestBody
- property
- @Value
- 디자인 패턴
- Request
- Security
- @RequestParam
- Codewars
- JWT
- 플라이웨이트
- 코딩테스트
- 파라미터
- 로그인
- yml
- ResponseDto
- 반환
- Spring
- enum
- RequestParam
- DTO
- RequestBody
- 헬스체크
- response
- 코드워즈
- actuator
- redis
- 프로퍼티
- Today
- Total
목록전체 글 (14)
있을 유, 참 진
처음에 풀었던 방법 문장을 단어로 분할 -> 단어를 캐릭터로 변환 후 점수를 계산(알파벳 enum을 활용), 문자열의 아스키 코드를 그대로 사용하려고 했는데 원하는 답이 나오지 않아 해당 방법을 사용함 package _code_wars; public class HighestScoringWord { public static void main(String[] args) { String test = "man i need a taxi up to ubud"; String test2 = "what time are we climbing up to the volcano"; String test3 = "take me to semynak"; System.out.println(high(test)); System.out.pr..
JWT Filter 생성 - JwtSecurityConfig Spring Security 공통 에러처리 - JwtAccessDeniedHandler - JwtAuthenticationEntryPoint WebSecurity에 값 설정 JWT Filter 생성 💡 JWT 토큰을 활용해 Security에서 인가를 처리하는 필터를 생성, 차후 `UsernamePasswordAuthenticationFilter` 전에 들어가 JWT의 정보를 통해 유저의 인가를 처리한다. @Slf4j @RequiredArgsConstructor public class JwtFilter extends GenericFilter { //헤더에서 받아올 이름 지정 public static final String AUTHORIZATION..
로그인 기능 구현 - 사용법 설명 JWT 관련 값 설정 loadUserByUsername(final String username) - User createUser(String username, User user) JWT Provider 생성 - String createToken(Authentication authentication) - Authentication getAuthentication(String token) - boolean validateToken(String token) 로그인 기능 구현 💡 로그인에 관련된 Controller 구현, `api/auth/authenticate` 을 호출하면 로그인이 된다. 순서는 아래와 같다. 유저의 아이디와 비밀번호 값을 이용해 authenticationT..