MapStruct를 사용하면서 알게 된 것들
@Mapper(componentModel = "spring", nullValueMappingStrategy = NullValueMappingStrategy.RETURN_DEFAULT)
public interface UserMapper {
UserMapper INSTANCE = Mappers.getMapper(UserMapper.class);
List<TbUserResponseDTO> toDtoList(List<TbUserEntity> entityList);
}