Skip to content

Commit

Permalink
Merge pull request #12 from deepredk/feature/4
Browse files Browse the repository at this point in the history
Swagger 라이브러리 적용
  • Loading branch information
deepredk authored Oct 17, 2023
2 parents 607dc41 + 6474bcd commit 7b57ccd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ dependencies {
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.0.2'
}

tasks.named('test') {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.numble.hittracker;
package it.numble.hittracker.common.config;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ObjectMapper;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.numble.hittracker.exception;
package it.numble.hittracker.common.exception;

import lombok.Getter;
import lombok.NoArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package it.numble.hittracker.exception.handler;
package it.numble.hittracker.common.exception.handler;

import it.numble.hittracker.controller.response.Response;
import it.numble.hittracker.controller.response.dto.Empty;
import it.numble.hittracker.exception.BaseException;
import it.numble.hittracker.common.exception.BaseException;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
Expand Down

0 comments on commit 7b57ccd

Please sign in to comment.