Skip to content

Commit

Permalink
#373 [hotfix] 리퀘스트 객체 오류 수정
Browse files Browse the repository at this point in the history
#373 [hotfix] 리퀘스트 객체 오류 수정
  • Loading branch information
sohyundoh authored Jun 5, 2024
2 parents dfa17a4 + 0c343d0 commit b1c47f8
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
package com.mile.commentreply.service.dto;

import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;

public record ReplyCreateRequest(
@NotBlank(message = "대댓글이 비어있습니다.")
@Size(max = 1500, message = "대댓글은 1500자를 넘을 수 없습니다.")
String content,
@NotNull(message = "익명 여부가 비어있습니다.")
boolean isAnonymous
) {
}
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
package com.mile.moim.service.dto;

import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;

public record MoimCreateRequest(
@Max(value = 10, message = "글모임명은 최대 10자 이내로 작성해주세요.")
@Size(max = 10, message = "글모임명은 최대 10자 이내로 작성해주세요.")
@NotBlank(message = "글감 제목이 비어 있습니다.")
String moimName,
@Max(value = 90, message = "글모임 소개글은 90자 이내로 작성해주세요.")
@Size(max = 90, message = "글모임 소개글은 90자 이내로 작성해주세요.")
String moimDescription,
@NotNull(message = "공개 여부를 선택해 주세요.")
Boolean isPublic,
String imageUrl,

@NotBlank(message = "필명이 입력되지 않았습니다.")
@Max(value = 8, message = "필명은 최대 8자 이내로 작성해주세요.")
@Size(max = 8, message = "필명은 최대 8자 이내로 작성해주세요.")
String writerName,
@Max(value = 100, message = "필명 소개글은 최대 100자 이내로 작성해주세요.")
@Size(max = 100, message = "필명 소개글은 최대 100자 이내로 작성해주세요.")
String writerNameDescription,

@Max(value = 15, message = "글감은 최대 15자 이내로 작성해주세요.")
@Size(max = 15, message = "글감은 최대 15자 이내로 작성해주세요.")
@NotBlank(message = "글감 제목이 비어 있습니다.")
String topic,
@Max(value = 5, message = "글감 태그는 최대 5자 이내로 작성해주세요.")
@Size(max = 5, message = "글감 태그는 최대 5자 이내로 작성해주세요.")
@NotBlank(message = "글감 태그가 비어 있습니다.")
String topicTag,
@Max(value = 90, message = "글감 소개글은 최대 90자 이내로 작성해주세요.")
@Size(max = 90, message = "글감 소개글은 최대 90자 이내로 작성해주세요.")
String topicDescription
) {
}
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package com.mile.moim.service.dto;

import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import jakarta.validation.constraints.Size;

public record MoimInfoModifyRequest(
@Max(value = 10, message = " 글모임 이름은 최대 10 글자 이내로 작성해주세요.")

@NotBlank(message = "모임 제목이 비어져 있습니다.")
@Size(max = 10, message = " 글모임 이름은 최대 10 글자 이내로 작성해주세요.")
String moimTitle,
@Max(value = 100, message = "글모임 설명은 최대 100 글자 이내로 작성해주세요.")
@NotBlank
@Size(max = 100, message = "글모임 설명은 최대 100 글자 이내로 작성해주세요.")
String description,

String imageUrl,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@

import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;

public record TopicCreateRequest(
@Max(value = 15, message = "글감은 최대 15자 이내로 작성해주세요.")
@Size(max = 15, message = "글감은 최대 15자 이내로 작성해주세요.")
@NotBlank(message = "글감 제목이 비어있습니다.")
String topicName,
@Max(value = 5, message = "글감 태그는 최대 5자 이내로 작성해주세요.")
@Size(max = 5, message = "글감 태그는 최대 5자 이내로 작성해주세요.")
@NotBlank(message = "글감 태그가 비어있습니다.")
String topicTag,
@Max(value = 5, message = "글감 설명은 최대 90자 이내로 작성해주세요.")
@Size(max = 5, message = "글감 설명은 최대 90자 이내로 작성해주세요.")
@NotBlank(message = "글감 설명은 비어있습니다.")
String topicDescription
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;

public record WriterMemberJoinRequest(
@NotBlank(message = "필명이 입력되지 않았습니다.")
@Max(value = 8, message = "필명은 최대 8자 이내로 작성해주세요.")
@Size(max = 8, message = "필명은 최대 8자 이내로 작성해주세요.")
String writerName,

@NotBlank(message = "소개 글이 입력되지 않았습니다.")
@Max(value = 110, message = "소개 글은 최대 100자 이내로 작성해주세요.")
@Size(max = 110, message = "소개 글은 최대 100자 이내로 작성해주세요.")
String writerDescription
) {
public static WriterMemberJoinRequest of(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public record CommentCreateRequest(

@Schema(description = "댓글 내용", example = "댓글 내용을 입력해주세요")
@NotBlank(message = "댓글에 내용이 없습니다.")
@Size(max = 500, message = "댓글 최대 입력 길이(500자)를 초과하였습니다.")
@Size(max = 1500, message = "댓글 최대 입력 길이(1500자)를 초과하였습니다.")
String content,

@NotNull(message = "익명 여부가 입력되지 않았습니다.")
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
package com.mile.topic.service.dto;


import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;

public record TopicPutRequest(
@Max(value = 15, message = "글감은 최대 15자 이내로 작성해주세요.")
@Size(max = 15, message = "글감은 최대 15자 이내로 작성해주세요.")
@NotBlank(message = "글감 제목이 비어 있습니다.")
String topic,
@Max(value = 5, message = "글감 태그는 최대 5자 이내로 작성해주세요.")
@Size(max = 5, message = "글감 태그는 최대 5자 이내로 작성해주세요.")
@NotBlank(message = "글감 태그가 비어 있습니다.")
String topicTag,
@Max(value = 90, message = "글감 소개글은 최대 90자 이내로 작성해주세요.")
@Size(max = 90, message = "글감 소개글은 최대 90자 이내로 작성해주세요.")
@NotBlank(message = "글감 설명은 비어 있습니다.")
String topicDescription
) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.mile.writername.service.dto;

import jakarta.validation.constraints.Max;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;

public record WriterNameDescriptionUpdateRequest(
@NotBlank(message = "소개 글이 입력되지 않았습니다.")
@Max(value = 110, message = "소개 글은 최대 110자 이내로 작성해주세요.")
@Size(max = 110, message = "소개 글은 최대 110자 이내로 작성해주세요.")
String description
) {
}

0 comments on commit b1c47f8

Please sign in to comment.