Skip to content

운영 배포#242

Merged
Hwanvely merged 17 commits intomainfrom
dev
Apr 7, 2026
Merged

운영 배포#242
Hwanvely merged 17 commits intomainfrom
dev

Conversation

@Hwanvely
Copy link
Copy Markdown
Collaborator

@Hwanvely Hwanvely commented Apr 7, 2026

No description provided.

* fix: 피버타임 검증 시 점수가 두배가 되지 않는 문제 해결

* refactor: 바뀐 dto에 맞게 BIZ 및 test 수정
* fix: 피버타임 검증 시 점수가 두배가 되지 않는 문제 해결

* refactor: 바뀐 dto에 맞게 BIZ 및 test 수정

* fix: 피버타임중 일시정지 시 피버타임도 멈추게 한다

* refactor: 인터페이스로 묶는다
* fix: 점수 증가 로직 오류 해결

* fix: 스트릭 발생 시각을 받는다

* refactor: 네이밍 수정

* fix(test): 스트릭 발생 시각 추가
* fix: 치팅 및 네트워크 지연 해결

* comment: 디버깅을 위한 로그 추가

* fix: session과 fevertime 일시정지 동기화
* fix: 치팅 및 네트워크 지연 해결

* comment: 디버깅을 위한 로그 추가

* fix: session과 fevertime 일시정지 동기화

* fix: 세션 예외 오류 해결

* feat: multipart 예외 핸들링

* refactor: CD 파이프라인 OCI로 마이그레이션

* fix: end response 분리
* fix: 치팅 및 네트워크 지연 해결

* comment: 디버깅을 위한 로그 추가

* fix: session과 fevertime 일시정지 동기화

* fix: 세션 예외 오류 해결

* feat: multipart 예외 핸들링

* refactor: CD 파이프라인 OCI로 마이그레이션

* fix: end response 분리

* fix: oci 경로 수정
* feat: drain 연결 종료 대기 추가

* feat: actuator 추가
@Hwanvely Hwanvely self-assigned this Apr 7, 2026
Copy link
Copy Markdown

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request integrates Spring Boot Actuator and Micrometer for Prometheus monitoring across environments and updates the rolling deployment script to utilize OCI CLI wait states for backend updates. A critical configuration error was identified in application-production.yml where the session cookie same-site property was incorrectly moved under the spring block instead of server, which would cause the setting to be ignored.

Comment on lines +9 to 24
servlet:
session:
cookie:
same-site: none

security:
jwt:
token:
access-secret-key: ${ACCESS_TOKEN_SECRET_KEY}
access-expiry-days: ${ACCESS_TOKEN_EXPIRY_DAYS}
refresh-secret-key: ${REFRESH_TOKEN_SECRET_KEY}
refresh-expiry-days: ${REFRESH_TOKEN_EXPIRY_DAYS}

server:
port: ${APPLICATION_PORT}
forward-headers-strategy: native
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Spring Boot 2.7 버전에서 세션 쿠키의 SameSite 설정은 spring.servlet이 아닌 server.servlet 하위에 위치해야 합니다. 현재 설정은 spring: 블록 내부에 잘못 배치되어 있어 운영 환경에서 세션 쿠키 설정이 무시될 수 있습니다. 이를 server: 블록 하위로 다시 이동해야 합니다.

security:
  jwt:
    token:
      access-secret-key: ${ACCESS_TOKEN_SECRET_KEY}
      access-expiry-days: ${ACCESS_TOKEN_EXPIRY_DAYS}
      refresh-secret-key: ${REFRESH_TOKEN_SECRET_KEY}
      refresh-expiry-days: ${REFRESH_TOKEN_EXPIRY_DAYS}

server:
  port: ${APPLICATION_PORT}
  forward-headers-strategy: native
  servlet:
    session:
      cookie:
        same-site: none

@Hwanvely Hwanvely merged commit 634bb4c into main Apr 7, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

1 participant