Merge branch 'main' into develop

This commit is contained in:
hyeda2020
2025-10-28 13:16:15 +09:00
committed by GitHub
41 changed files with 1340 additions and 133 deletions
@@ -15,6 +15,7 @@ import lombok.*;
indexes = {
@Index(name = "idx_participant_event_id", columnList = "event_id"),
@Index(name = "idx_participant_event_phone", columnList = "event_id, phone_number")
},
uniqueConstraints = {
@UniqueConstraint(name = "uk_event_phone", columnNames = {"event_id", "phone_number"})
@@ -24,6 +24,8 @@ public class SecurityConfig {
.csrf(csrf -> csrf.disable())
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
.authorizeHttpRequests(auth -> auth
// Actuator endpoints
.requestMatchers("/actuator/**").permitAll()
.anyRequest().permitAll()
);
@@ -73,3 +73,19 @@ logging:
max-file-size: 10MB
max-history: 7
total-size-cap: 100MB
# Actuator
management:
endpoints:
web:
exposure:
include: health,info,metrics,prometheus
base-path: /actuator
endpoint:
health:
show-details: always
show-components: always
health:
livenessState:
enabled: true
readinessState:
enabled: true