chore: JPA 초기 세팅 - #7
Merged
Merged
Conversation
- kotlin.plugin.jpa, spring-boot-starter-data-jpa, postgresql, h2 의존성 추가 - local/test 프로파일: H2 in-memory (PostgreSQL mode), DDL create-drop - dev/prod 프로파일: PostgreSQL, 환경변수 기반 datasource, DDL validate - BaseEntity: createdAt/updatedAt JPA Auditing - JpaConfig: @EnableJpaAuditing 설정 - .gitignore: .omc/ 추가 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
🧪 테스트 결과
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 151471ee33
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
ddingmin
approved these changes
Jul 19, 2026
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 작업 개요
Spring Data JPA 초기 세팅으로 데이터베이스 연동 기반을 구성합니다.
🔖 PR 유형
📝 변경 사항
kotlin.plugin.jpa,spring-boot-starter-data-jpa,postgresql,h2의존성 추가local/test프로파일: H2 in-memory (PostgreSQL mode), DDLcreate-dropdev/prod프로파일: PostgreSQL, 환경변수 기반 datasource, DDLvalidateBaseEntity:createdAt/updatedAtJPA Auditing 적용JpaConfig:@EnableJpaAuditing설정.gitignore:.omc/추가🔗 관련 이슈
✅ 테스트 / 확인 방법
local프로파일로 애플리케이션 실행 후http://localhost:8080/h2-console접속 확인jdbc:h2:mem:momogo, 계정:sa/ 비밀번호 없음dev/prod환경에서 다음 환경변수 설정 필요:DB_HOSTDB_PORT5432)DB_NAMEDB_USERNAMEDB_PASSWORD💬 리뷰어에게
ddl-auto를dev/prod에서validate로 설정했습니다.🧹 셀프 체크리스트