Skip to content

Commit

Permalink
Merge pull request #269 from Denia-park/fix/ControllerAdvice-순서-이슈
Browse files Browse the repository at this point in the history
ControllerAdvice 순서 변경
  • Loading branch information
Denia-park authored Mar 17, 2024
2 parents a892b5b + 02023cd commit f5a7116
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
import net.gpedro.integrations.slack.SlackField;
import net.gpedro.integrations.slack.SlackMessage;
import org.springframework.context.annotation.Profile;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

Expand All @@ -25,6 +27,7 @@
@Profile("prod")
@RequiredArgsConstructor
@RestControllerAdvice
@Order(Ordered.LOWEST_PRECEDENCE)
@Slf4j
public class ServerErrorDetectControllerAdvice {
/**
Expand Down

0 comments on commit f5a7116

Please sign in to comment.