Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
69 commits
Select commit Hold shift + click to select a range
156c443
Init module
LIFIC-JAMES Jan 11, 2025
ebc22ed
Implementing movie search code
LIFIC-JAMES Jan 11, 2025
80eb082
Add readme
LIFIC-JAMES Jan 11, 2025
63da73e
refactor: update project structure and docker configuration
sina-log Jan 18, 2025
584d570
feat: add seat entity and related configurations
sina-log Jan 18, 2025
eeaa018
feat: add DDL for all entities
sina-log Jan 18, 2025
193d7e2
refactor: remove duplicate fields from entities that extend BaseEntity
sina-log Jan 18, 2025
d94db02
feat: add BaseEntity create, update fields to all tables in ddl.sql
LIFIC-JAMES Jan 19, 2025
c50d12e
fix: remove duplicate fields and add foreign key constraints in ddl.sql
sina-log Jan 19, 2025
55847fe
refactor: remove foreign key constraints from ddl.sql
sina-log Jan 19, 2025
d9fb562
refactor: simplify package scanning with wildcard in ApiApplication
sina-log Jan 19, 2025
059a02d
feat: add sample data to ddl.sql
sina-log Jan 19, 2025
d73ce43
fix: replace asterisk with explicit common columns in ddl.sql
sina-log Jan 19, 2025
64f8161
fix: add character encoding configuration
sina-log Jan 19, 2025
2b3ca82
refactor: remove unnecessary HelloController
sina-log Jan 19, 2025
4f074bd
fix: handle null startAt in Schedule
sina-log Jan 19, 2025
1fa8767
fix: handle null releaseDate in Movie
sina-log Jan 19, 2025
692e195
chore: improve application configuration and build settings
sina-log Jan 19, 2025
120a9e3
refactor: remove movie prefix from module names
sina-log Jan 19, 2025
8035a3c
refactor: remove EntityGraph and use JOIN FETCH for Schedule queries
sina-log Jan 19, 2025
a31de4f
chore: add k6 performance test script
sina-log Jan 19, 2025
db41dc3
feat: apply projection pattern for movie query api
sina-log Jan 19, 2025
258959a
chore: add k6 performance test script
sina-log Jan 19, 2025
4a73a75
feat: add search functionality with validation
sina-log Jan 19, 2025
6384942
feat: Implement movie search API with schedule information
sina-log Jan 19, 2025
18489cf
fix: Redis 직렬화 문제 해결 - MovieResponseDto Serializable 구현, 생성자 및 기본값 설정
sina-log Jan 19, 2025
1f0308f
docs: k6 성능 테스트 결과 추가
sina-log Jan 19, 2025
8c9e34b
chore: gitignore에 QClass 파일 제외 설정 추가
sina-log Jan 27, 2025
ed5d777
refactor: 엔티티 연관관계 및 FK 제약조건 제거
sina-log Jan 27, 2025
c22b5f9
fix: Redis 직렬화 문제 해결 - MovieResponseDto Serializable 구현, 생성자 및 기본값 설정
sina-log Jan 27, 2025
3d04f2f
refactor: QueryDSL을 사용하여 스케줄 조회 구현 - JOIN FETCH 제거
sina-log Jan 27, 2025
9ba4f4e
feat: Add Schedule entity and repository with Movie and Theater relat…
sina-log Jan 27, 2025
6185376
feat: Add basic entities and relationships for reservation system
sina-log Jan 27, 2025
64b4eae
refactor: Remove entity relationships and use IDs instead
sina-log Jan 27, 2025
b1503f7
feat: Add distributed lock using Redisson
sina-log Jan 27, 2025
e03c857
fix: 데이터베이스 초기화 스크립트 수정 및 외래키 제약조건 문제 해결
sina-log Jan 27, 2025
4e5bdd6
feat: QueryDSL 적용 및 @Query 제거
sina-log Jan 27, 2025
0c5671f
feat: 분산 락(Distributed Lock) 구현
sina-log Jan 27, 2025
48b8ef0
test: 예매 시스템 테스트 구현
sina-log Jan 27, 2025
177aa5e
feat: 예외 처리 개선
sina-log Jan 27, 2025
abe1a48
feat: API 응답 형식 표준화 및 Swagger 문서화
sina-log Jan 27, 2025
d671748
feat: 성능 최적화 (N+1 문제 해결 및 캐시 적용)
sina-log Jan 27, 2025
1621a84
feat: 로깅 및 모니터링 구현
sina-log Jan 27, 2025
740799f
docs: README 업데이트 - 3주차 요구사항 추가
sina-log Jan 27, 2025
4d48bb8
feat: Implement IP-based RateLimit for Movie API
sina-log Feb 3, 2025
8b307a9
feat: Add time-based RateLimit for Reservation API
sina-log Feb 3, 2025
bba63d4
feat: Add unified API response format with error codes
sina-log Feb 3, 2025
cf8e431
test: Add unit tests for RateLimitService
sina-log Feb 3, 2025
5823b43
test: Add unit tests for ReservationRateLimitService
sina-log Feb 3, 2025
5d1dcc3
test: Add integration tests for Movie and Reservation API RateLimit
sina-log Feb 3, 2025
b443b2c
test: Add test coverage for RateLimit and ApiResponse
sina-log Feb 3, 2025
148fec2
fix: Movie 엔티티 컬럼 매핑 수정 및 테스트 설정 개선
sina-log Feb 4, 2025
97bfd0f
feat: Configure Docker environment with MySQL, Redis and fix schema.sql
sina-log Feb 4, 2025
efe440c
fix: Change Seat entity rowNumber field type to String
sina-log Feb 4, 2025
34ee5ce
feat: Add standardized API response format and exception handling
sina-log Feb 4, 2025
a9dd27d
feat: Implement single-server rate limiting using Google Guava
sina-log Feb 4, 2025
9915138
feat: Implement distributed rate limiting using Redis and Redisson
sina-log Feb 4, 2025
a43c1ba
chore: Configure test environment with JaCoCo and test fixtures
sina-log Feb 4, 2025
5dec7cc
test: Add comprehensive test coverage for controllers, services and r…
sina-log Feb 4, 2025
62916d2
refactor: Improve rate limiting implementation with interface abstrac…
sina-log Feb 4, 2025
a809cf3
refactor: Improve test code structure with base integration test class
sina-log Feb 4, 2025
f2953fd
refactor: Improve exception handling with business exception hierarchy
sina-log Feb 4, 2025
d03b26f
test: Add unit tests for rate limiting components
sina-log Feb 4, 2025
c8a58d7
refactor: Improve module structure with common module
sina-log Feb 4, 2025
db929af
refactor: Move rate limiting tests to common module
sina-log Feb 4, 2025
5762cec
test: Temporarily disable ReservationRepositoryTest
sina-log Feb 4, 2025
6da3799
feat: Add RateLimit implementation and consistent response format
sina-log Feb 4, 2025
397e132
refactor: RateLimit 관련 모듈 구조 개선 - RateLimitService 인터페이스를 common 모듈로 …
sina-log Feb 4, 2025
233eaa1
docs: Rate Limit 구현 내용과 JaCoCo 테스트 커버리지 리포트 추가
sina-log Feb 4, 2025
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
39 changes: 0 additions & 39 deletions .github/labeler-config.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/pull_request_template.md

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/Auto_PR_Labeler.yml

This file was deleted.

46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
HELP.md
.gradle
build/
!gradle/wrapper/gradle-wrapper.jar
!**/src/main/**/build/
!**/src/test/**/build/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
out/
!**/src/main/**/out/
!**/src/test/**/out/

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/

### VS Code ###
.vscode/

# Querydsl QClass
**/src/main/generated/
**/generated/
**/src/**/Q*.java

# Logs
logs
*.log
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM gradle:8.5-jdk21 AS build
WORKDIR /app
COPY . .
RUN gradle build -x test

FROM openjdk:21-slim
WORKDIR /app
COPY --from=build /app/api/build/libs/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "app.jar"]
Loading