- 2023.03.26 ~ 2023.09.26
로그인 & 회원가입 페이지
👉 로그인페이지: 토큰을 받아오고, 계정 정보를 받아오면 헤더 이미지와 마이페이지, 로그인 시 자신이 저장한 픽 마커 호출되는 기능, 로그아웃하면 초기화
- 기본 형식: [소문자] 한국어 설명
- 예시: [feat] 로그인
feature/fix/etc -> develop -> main
- 기본 형식: 태그/이슈이름-그대로-#이슈번호
- 예시: feat/create-group-#14
.
├── WingleApplication.java
├── affliation
│ ├── controller
│ ├── dto
│ ├── entity
│ ├── repository
│ └── service
├── common
│ ├── aop
│ │ ├── LogAspect.java
│ │ ├── LogConfig.java
│ │ ├── LogTraceIdInterceptor.java
│ │ └── NoLogging.java
│ ├── config
│ │ ├── AmazonS3Config.java
│ │ ├── JwtSecurityConfig.java
│ │ ├── MailConfig.java
│ │ ├── RedisConfig.java
│ │ ├── RestTemplateConfig.java
│ │ ├── SecurityConfig.java
│ │ └── WebMvcConfig.java
│ ├── constants
│ │ ├── ErrorCode.java
│ │ └── SuccessCode.java
│ ├── dto
│ │ └── ApiResponse.java
│ ├── entity
│ │ └── BaseEntity.java
│ ├── exception
│ │ ├── BadRequestException.java
│ │ ├── DuplicateException.java
│ │ ├── ForbiddenException.java
│ │ ├── InternalServerErrorException.java
│ │ ├── NotFoundException.java
│ │ ├── NumberFormatException.java
│ │ ├── RestExceptionHandler.java
│ │ └── UnauthorizedException.java
│ ├── filter
│ │ ├── ApiLoggingFilter.java
│ │ ├── ReadableRequestBodyWrapper.java
│ │ └── ReadableResponseBodyWrapper.java
│ ├── jwt
│ │ ├── JwtAccessDeniedHandler.java
│ │ ├── JwtAuthenticationEntryPoint.java
│ │ ├── JwtFilter.java
│ │ ├── TokenInfo.java
│ │ └── TokenProvider.java
│ ├── util
│ │ ├── AES256Util.java
│ │ ├── RedisUtil.java
│ │ ├── S3Util.java
│ │ ├── SecurityUtil.java
│ │ └── StringUtil.java
│ └── validator
│ ├── LengthWithoutCR.java
│ └── LengthWithoutCRValidator.java
├── community
│ ├── article
│ │ ├── Article.java
│ │ ├── ArticleController.java
│ │ ├── ArticleEditRequestDto.java
│ │ ├── ArticleImage.java
│ │ ├── ArticleImageRepository.java
│ │ ├── ArticleMapper.java
│ │ ├── ArticleRepository.java
│ │ ├── ArticleRequestDto.java
│ │ ├── ArticleResponseDto.java
│ │ └── ArticleService.java
│ ├── comment
│ │ ├── Comment.java
│ │ ├── CommentController.java
│ │ ├── CommentMapper.java
│ │ ├── CommentRepository.java
│ │ ├── CommentRequestDto.java
│ │ ├── CommentResponseDto.java
│ │ └── CommentService.java
│ ├── forum
│ │ ├── Forum.java
│ │ ├── ForumCode.java
│ │ ├── ForumController.java
│ │ ├── ForumMapper.java
│ │ ├── ForumRepository.java
│ │ ├── ForumResponseDto.java
│ │ └── ForumService.java
│ └── util
│ ├── CommunityUtil.java
│ └── ProcessedPersonalInformation.java
├── member
│ ├── AuthController.java
│ ├── MemberController.java
│ ├── MemberRepository.java
│ ├── TermMemberRepository.java
│ ├── TermRepository.java
│ ├── dto
│ ├── entity
│ ├── mailVo
│ └── service
├── message
│ ├── OriginType.java
│ ├── controller
│ ├── dto
│ ├── entity
│ ├── mapper
│ ├── repository
│ └── service
├── profile
│ ├── InterestRepository.java
│ ├── LanguageRepository.java
│ ├── MemberInterestRepository.java
│ ├── ProfileController.java
│ ├── ProfileRepository.java
│ ├── ProfileService.java
│ ├── SnsRepository.java
│ ├── dto
│ ├── entity
│ └── util
└── writing
├── Writing.java
├── WritingDto.java
├── WritingRepository.java
├── WritingService.java
└── WritingUtil.java