Skip to content

Commit

Permalink
refactor: move filter directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Whale0928 committed Feb 19, 2024
1 parent 9b68a68 commit b640faf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.petlink.config.security;

import com.petlink.config.filter.JwtAuthenticationEntryPoint;
import com.petlink.config.filter.JwtAuthenticationFilter;
import com.petlink.config.security.filter.JwtAuthenticationEntryPoint;
import com.petlink.config.security.filter.JwtAuthenticationFilter;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.context.annotation.Bean;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.petlink.config.filter;
package com.petlink.config.security.filter;

import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.petlink.config.filter;
package com.petlink.config.security.filter;

import com.petlink.common.cache.TokenCacheService;
import com.petlink.common.util.jwt.JwtTokenProvider;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public class AuthenticationService {
private final JwtTokenProvider jwtTokenProvider;
private final PasswordEncoder passwordEncoder;


public String login(String email, String password) {
//회원이 존재하지 않을 경우 예외 처리
Member member = memberRepository.findByEmail(email)
Expand Down

0 comments on commit b640faf

Please sign in to comment.