Postgresql TEXT 타입 선언 수정, API 경로 수정

This commit is contained in:
2025-11-21 14:10:55 +09:00
parent 4cf550ef4f
commit 892752ed5c
3 changed files with 5 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RestController;
@Tag(name = "감사 로그", description = "감사 로그 관리 API")
@RequiredArgsConstructor
@RestController
@RequestMapping({"/api/log/audit", "/v1/api/log/audit"})
@RequestMapping("/api/log/audit")
public class AuditLogApiController {
private final AuditLogCoreService auditLogCoreService;

View File

@@ -17,7 +17,7 @@ import org.springframework.web.bind.annotation.RestController;
@Tag(name = "에러 로그", description = "에러 로그 관리 API")
@RequiredArgsConstructor
@RestController
@RequestMapping({"/api/log/error", "/v1/api/log/error"})
@RequestMapping("/api/log/error")
public class ErrorLogApiController {
private final ErrorLogCoreService errorLogCoreService;

View File

@@ -31,7 +31,10 @@ public class ErrorLogEntity extends CommonCreateEntity {
private String errorCode;
private String errorMessage;
@Column(columnDefinition = "TEXT")
private String stackTrace;
private Long handlerUid;
private ZonedDateTime handledDttm;