Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.springframework.stereotype.Component;

@Component
@Profile("!perf") // perf ν™˜κ²½μ΄ 아닐 λ•Œ 빈으둜 등둝
@Profile("!perf & !prod") // perf, prod ν™˜κ²½μ΄ 아닐 λ•Œ 빈으둜 등둝 - μž„
@RequiredArgsConstructor
public class DefaultReservationValidationAdapter implements ReservationValidationPort {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

@Slf4j
@Component
@Profile("perf") // perf ν™˜κ²½μΌ λ•Œλ§Œ 빈으둜 등둝
@Profile({"perf", "prod"}) // perf ν™˜κ²½μΌ λ•Œ(+ μž„μ‹œλ‘œ prodμ—μ„œλ„)만 빈으둜 등둝
public class PerfReservationValidationAdapter implements ReservationValidationPort {

private static final LocalDate FIXED_PERF_DATE = LocalDate.of(2026, 12, 31);
Expand Down
Loading