Skip to content

Commit

Permalink
[fix] #268 - nested DTO가 Swagger에 잡히지 않는 문제 해결 (#271)
Browse files Browse the repository at this point in the history
* [feat] #265 - Enum Custom Converter 구현 및 기타 작업 완료 (#266)

* [#256] refactor: 생성자 private로 변경

* [#256] fix: 오탈자 수정

* [#256] test(GuestBookingServiceConcurrencyTest): 변경된 필드 테스트에 반영

* [#256] feat: enum custom converter 구현

* [#256] fix(PerformanceImage): 테이블명과 겹치지 않게 공연이미지 변수명 수정

* [#256] feat(GlobalExceptionHandler): MethodArgumentTypeMismatchException handler 등록

* [#256] fix(Performance): 자료형을 tinytext에서 longtext로 수정

* [#268] fix: 모든 클래스의 이름을 FQN 형식으로 API 문서에 표시하도록 변경

* [#268] chore(Performance): 쓰지 않는 import문 삭제
  • Loading branch information
hoonyworld authored Dec 1, 2024
1 parent fa9cd6a commit b2825b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,7 @@ cors:

app:
server:
url: ${DEV_SERVER_URL}
url: ${DEV_SERVER_URL}

springdoc:
use-fqn: true
5 changes: 4 additions & 1 deletion src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,7 @@ cors:

app:
server:
url: ${PROD_SERVER_URL}
url: ${PROD_SERVER_URL}

springdoc:
use-fqn: true
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class GuestBookingServiceConcurrencyTest {

@BeforeEach
@Transactional
public void setup() {
void setup() {
logger.info("Setting up initial data...");

Users initialUser = Users.create();
Expand All @@ -84,7 +84,7 @@ public void setup() {
}

@Test
public void testConcurrentGuestBooking() {
void testConcurrentGuestBooking() {
int threadCount1 = 100; // 회차 1번에 대해 100명 요청
int threadCount2 = 150; // 회차 2번에 대해 150명 요청

Expand Down

0 comments on commit b2825b2

Please sign in to comment.