Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#175 | All Annotations Have Been Optimized and Sonar Issues Have Been Fixed #177

Merged
merged 1 commit into from
Sep 17, 2023

Conversation

agitrubard
Copy link
Collaborator

Issue Details

Entity

@Entity
@Getter
@Setter
@SuperBuilder // Just when you need it
@NoArgsConstructor // Just when you need it
@AllArgsConstructor // Just when you need it
@EqualsAndHashCode(callSuper = true)
@Table(name = "{table_name}")

Domain Model

  • Simple
@Getter
@Builder
  • Extended
@Getter
@Setter
@SuperBuilder
@EqualsAndHashCode(callSuper = true)

Request

  • Simple & Extended
@Getter
@Setter
@Builder // Just when you need it
  • Extended with Paging
// No Annotation
  • Extended with Paging & Filter
@Getter
@Setter
@Builder // Just when you need it
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)

Response

  • Simple
@Getter
@Setter
@Builder // Just when you need it
  • Extended
@Getter
@Setter
@SuperBuilder // Just when you need it
@EqualsAndHashCode(callSuper = true)

@agitrubard agitrubard changed the title All Annotations Have Been Optimized and Sonar Issues Have Been Fixed #175 | All Annotations Have Been Optimized and Sonar Issues Have Been Fixed Sep 16, 2023
Copy link
Contributor

@Rapter1990 Rapter1990 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@Rapter1990 Rapter1990 merged commit cdff5cb into main Sep 17, 2023
2 checks passed
@Rapter1990 Rapter1990 deleted the refactor/175/sonar-issues branch September 17, 2023 19:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sonar Issue'larının Çözülmesi ve DTO'larda Kullanılan Anotasyonların Optimize Edilmesi
4 participants