<aside> ▪️ 2024. 2. 6 (화) 오후 15시 00분~오후 15시 30분 - 권태관 멘토님
</aside>
<aside> 💡 프로젝트 매니징을 위해 사용 언어, 역할 분담, 프로젝트 진행 현황 등을 우선적으로 공유해주세요
✔️ 원활한 멘토링을 위해 미리 작성해주시면 감사드리겠습니다❗ ✔️ 필요시 이미지/링크/파일 등을 활용해도 좋습니다. ✔️ 멘토링 종료 후, 해당 템플릿을 수정/삭제 하지 말아주세요. 🚫
</aside>
<aside> ▪️ 프로젝트 깃허브 링크 https://github.com/Kernel360/f1-Orury-Backend (백엔드) https://github.com/Kernel360/f1-Orury-Client (프론트엔드_Client) https://github.com/Kernel360/f1-Orury-Admin (프론트엔드_Admin)
</aside>
<aside> 💡 ✔️ 질문 내용이나 갯수에는 제한이 없습니다:) ✔️ 효과적인 멘토링을 위해 히스토리, 요청사항 등을 최대한 상세하게 작성해주세요.
</aside>
저희가 초기에 기획한 서비스를 이제는 거의 다 구현이 된 상황입니다.
운영 말고도 이제 “크루” 기능을 추가하고자 하는데, 대략적으로는 게임 길드 구성하듯이 크루를 생성하고, 크루원끼리 채팅할 수 있는 기능을 구현해볼까 합니다.
여기서 이제 단순한 비즈니스로직 말고 한 스텝 더 복잡한 비즈니스 로직을 다루고 싶다는 갈증이 있습니다.
혹시 멘토님께서 생각하시기에, 이력서에 적을만한 유의미한 비즈니스 로직이 있다면 추천 부탁드립니다..!
대부분 문제가 없지만 이미지 업로드 하는 경우 EC2 컨디션에 따라 느릴 때가 있습니다. 해결책으로 비동기 로직을 사용하려고 합니다.
비동기로직을 사용하여 파일 처리중에 에러가 발생하면 클라이언트에게 어떻게 알려주는지 궁금합니다.
질문3
2024-02-05 14:07:14: [http-nio-8085-exec-8] WARN com.zaxxer.hikari.pool.PoolBase [com.zaxxer.hikari.pool.PoolBase.isConnectionDead:179] -
HikariPool-2 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@5c35d7d5 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2024-02-05 14:07:24: [http-nio-8085-exec-8] WARN com.zaxxer.hikari.pool.PoolBase [com.zaxxer.hikari.pool.PoolBase.isConnectionDead:179] -
HikariPool-2 - Failed to validate connection com.mysql.cj.jdbc.ConnectionImpl@35967116 (No operations allowed after connection closed.). Possibly consider using a shorter maxLifetime value.
2024-02-05 14:07:24: [http-nio-8085-exec-8] WARN org.hibernate.engine.jdbc.spi.SqlExceptionHelper [org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logExceptions:145] -
SQL Error: 0, SQLState: 08003
2024-02-05 14:07:24: [http-nio-8085-exec-8] ERROR org.hibernate.engine.jdbc.spi.SqlExceptionHelper [org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logExceptions:150] -
HikariPool-2 - Connection is not available, request timed out after 30017ms.
2024-02-05 14:07:24: [http-nio-8085-exec-8] ERROR org.hibernate.engine.jdbc.spi.SqlExceptionHelper [org.hibernate.engine.jdbc.spi.SqlExceptionHelper.logExceptions:150] -
No operations allowed after connection closed.
2024-02-05 14:07:24: [http-nio-8085-exec-8] INFO org.hibernate.event.internal.DefaultLoadEventListener [org.hibernate.event.internal.DefaultLoadEventListener.doOnLoad:112] -
HHH000327: Error performing load command
org.hibernate.exception.JDBCConnectionException: could not prepare statement [HikariPool-2 - Connection is not available, request timed out after 30017ms.] [select g1_0.id,g1_0.address,g1_0.brand,g1_0.created_at,g1_0.homepage_link,g1_0.images,g1_0.instagram_link,g1_0.kakao_id,g1_0.latitude,g1_0.like_count,g1_0.longitude,g1_0.name,g1_0.phone_number,g1_0.remark,g1_0.review_count,g1_0.road_address,g1_0.service_fri
public record UserPrincipal(
Long id,
String email,
String password,
String username,
Boolean isAdmin,
Collection<? extends GrantedAuthority> authorities,
Map<String, Object> oAuthAttributes
) implements UserDetails, OAuth2User {
public static UserPrincipal of(
Long id,
String email,
String password,
String username,
Boolean isAdmin
) {
return UserPrincipal.of(
id,
email,
password,
username,
isAdmin,
Map.of()
);
}
public static UserPrincipal of(
Long id,
String email,
String password,
String username,
Boolean adminCheck,
Map<String, Object> oAuthAttributes
) {
Set<RoleType> roleTypes = new HashSet<>();
if (adminCheck) roleTypes.add(RoleType.ADMIN);
roleTypes.add(RoleType.USER);
return new UserPrincipal(
id,
email,
password,
username,
adminCheck,
roleTypes.stream().map(RoleType::getName).map(SimpleGrantedAuthority::new).collect(Collectors.toUnmodifiableSet()),
oAuthAttributes
);
}
public static UserPrincipal from(UserInfoDto dto) {
return UserPrincipal.of(
dto.id(),
dto.email(),
dto.password(),
dto.name(),
dto.adminCheck()
);
}
object LinkInfoMapper {
fun responseLinkInfoToLinkInfo(data: ResponseLinkInfo): LinkInfo {
return LinkInfo(
data.user,
data.title,
data.originalUrl,
data.thumbUrl,
data.slackCreatedAt
)
}
}
object UserInfoMapper {
fun responseToUserInfo(data: ResponseUserInfo): UserInfo {
return UserInfo(
data.id,
data.name,
data.admin,
data.createdAt,
data.updatedAt
)
}
}
Entity -> DTO -> Response
Request -> DTO -> Entity
메서드 오버로딩을 통해 구현하는 것과 Mapper의 역할이 겹친다고 생각합니다. 메서드 오버로딩 방식의 구현과 별도의 Mapper를 구현한 방식의 차이점? Mapper를 써야만 하는 상황이 있을까요?