diff --git a/backend/apigateway/src/main/resources/application.yml b/backend/apigateway/src/main/resources/application.yml index fb45ab4..c2f5b0d 100644 --- a/backend/apigateway/src/main/resources/application.yml +++ b/backend/apigateway/src/main/resources/application.yml @@ -1,76 +1,76 @@ -server: - port: 8000 - -spring: - application: - name: apigateway - cloud: - gateway: - routes: - - id: user-service - uri: lb://USER-SERVICE - predicates: - - Path=/user-service/** - filters: - - RemoveRequestHeader=Cookie - - RewritePath=/user-service/(?.*), /$\{segment} - - id: portal-service - uri: lb://PORTAL-SERVICE - predicates: - - Path=/portal-service/** - filters: - - RewritePath=/portal-service/(?.*), /$\{segment} - - id: board-service - uri: lb://BOARD-SERVICE - predicates: - - Path=/board-service/** - filters: - - RewritePath=/board-service/(?.*), /$\{segment} - - id: reserve-item-service - uri: lb://RESERVE-ITEM-SERVICE - predicates: - - Path=/reserve-item-service/** - filters: - - RewritePath=/reserve-item-service/(?.*), /$\{segment} - - id: reserve-check-service - uri: lb://RESERVE-CHECK-SERVICE - predicates: - - Path=/reserve-check-service/** - filters: - - RewritePath=/reserve-check-service/(?.*), /$\{segment} - - id: reserve-request-service - uri: lb://RESERVE-REQUEST-SERVICE - predicates: - - Path=/reserve-request-service/** - filters: - - RewritePath=/reserve-request-service/(?.*), /$\{segment} - - id: openapi - uri: http://localhost:${server.port} - predicates: - - Path=/v3/api-docs/** - filters: - - RewritePath=/v3/api-docs/(?.*), /$\{segment}/v3/api-docs - default-filters: - - name: GlobalFilter - args: - preLogger: true - postLogger: true - discovery: - locator: - enabled: true - -# config server actuator -management: - endpoints: - web: - exposure: - include: refresh, health, beans, info - -info: - app: - name: Spring Cloud Gateway - description: API , ͸/Ʈ ϰ ȿ - swagger-ui: http://localhost:8000/webjars/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config - -messages: - directory: ${user.dir}/msa-attach-volume/messages +server: + port: 8000 + +spring: + application: + name: apigateway + cloud: + gateway: + routes: + - id: user-service + uri: lb://USER-SERVICE + predicates: + - Path=/user-service/** + filters: + - RemoveRequestHeader=Cookie + - RewritePath=/user-service/(?.*), /$\{segment} + - id: portal-service + uri: lb://PORTAL-SERVICE + predicates: + - Path=/portal-service/** + filters: + - RewritePath=/portal-service/(?.*), /$\{segment} + - id: board-service + uri: lb://BOARD-SERVICE + predicates: + - Path=/board-service/** + filters: + - RewritePath=/board-service/(?.*), /$\{segment} + - id: reserve-item-service + uri: lb://RESERVE-ITEM-SERVICE + predicates: + - Path=/reserve-item-service/** + filters: + - RewritePath=/reserve-item-service/(?.*), /$\{segment} + - id: reserve-check-service + uri: lb://RESERVE-CHECK-SERVICE + predicates: + - Path=/reserve-check-service/** + filters: + - RewritePath=/reserve-check-service/(?.*), /$\{segment} + - id: reserve-request-service + uri: lb://RESERVE-REQUEST-SERVICE + predicates: + - Path=/reserve-request-service/** + filters: + - RewritePath=/reserve-request-service/(?.*), /$\{segment} + - id: openapi + uri: http://localhost:${server.port} + predicates: + - Path=/v3/api-docs/** + filters: + - RewritePath=/v3/api-docs/(?.*), /$\{segment}/v3/api-docs + default-filters: + - name: GlobalFilter + args: + preLogger: true + postLogger: true + discovery: + locator: + enabled: true + +# config server actuator +management: + endpoints: + web: + exposure: + include: refresh, health, beans, info + +info: + app: + name: Spring Cloud Gateway + description: API 라우팅 및 보안, 모니터링/메트릭 등의 기능을 간단하고 효과적인 방법으로 제공 + swagger-ui: http://localhost:8000/webjars/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config + +messages: + directory: ${user.dir}/msa-attach-volume/messages diff --git a/backend/board-service/src/main/resources/application.yml b/backend/board-service/src/main/resources/application.yml index a7d6abf..0af24fd 100644 --- a/backend/board-service/src/main/resources/application.yml +++ b/backend/board-service/src/main/resources/application.yml @@ -1,33 +1,33 @@ -server: - port: 0 # random port - -spring: - application: - name: board-service - jpa: - hibernate: - ddl-auto: none - properties: - hibernate: - dialect: org.hibernate.dialect.MySQL57Dialect - storage_engine: innodb - format_sql: true - default_batch_fetch_size: 1000 - show-sql: true - servlet: - multipart: - enabled: true - max-file-size: 10MB - max-request-size: 50MB - -# config server actuator -management: - endpoints: - web: - exposure: - include: refresh, health, beans, info - -info: - app: - name: Board Service - description: Խǰ, Խù, ÷ϰ +server: + port: 0 # random port + +spring: + application: + name: board-service + jpa: + hibernate: + ddl-auto: none + properties: + hibernate: + dialect: org.hibernate.dialect.MySQL57Dialect + storage_engine: innodb + format_sql: true + default_batch_fetch_size: 1000 + show-sql: true + servlet: + multipart: + enabled: true + max-file-size: 10MB + max-request-size: 50MB + +# config server actuator +management: + endpoints: + web: + exposure: + include: refresh, health, beans, info + +info: + app: + name: Board Service + description: 게시판관리, 게시물관리, 첨부파일관리 기능을 제공 diff --git a/backend/reserve-check-service/src/main/resources/application.yml b/backend/reserve-check-service/src/main/resources/application.yml index 8fd8e21..a70442b 100644 --- a/backend/reserve-check-service/src/main/resources/application.yml +++ b/backend/reserve-check-service/src/main/resources/application.yml @@ -1,18 +1,18 @@ -spring: - application: - name: reserve-check-service - -server: - port: 0 - -# config server actuator -management: - endpoints: - web: - exposure: - include: refresh, health, beans, info - -info: - app: - name: Reserve Check Service - description: ý Ȯ, / +spring: + application: + name: reserve-check-service + +server: + port: 0 + +# config server actuator +management: + endpoints: + web: + exposure: + include: refresh, health, beans, info + +info: + app: + name: Reserve Check Service + description: 예약시스템 기능 중 예약확인, 예약승인/취소 기능을 제공 diff --git a/backend/reserve-item-service/src/main/resources/application.yml b/backend/reserve-item-service/src/main/resources/application.yml index 4ea1c27..f1a5f00 100644 --- a/backend/reserve-item-service/src/main/resources/application.yml +++ b/backend/reserve-item-service/src/main/resources/application.yml @@ -1,18 +1,18 @@ -spring: - application: - name: reserve-item-service - -server: - port: 0 - -# config server actuator -management: - endpoints: - web: - exposure: - include: refresh, health, beans, info - -info: - app: - name: Reserve Item Service - description: ý , ๰ǰ +spring: + application: + name: reserve-item-service + +server: + port: 0 + +# config server actuator +management: + endpoints: + web: + exposure: + include: refresh, health, beans, info + +info: + app: + name: Reserve Item Service + description: 예약시스템 기능 중 예약지역, 예약물품 관리 기능을 제공 diff --git a/backend/reserve-request-service/src/main/resources/application.yml b/backend/reserve-request-service/src/main/resources/application.yml index a82c400..088fa9d 100644 --- a/backend/reserve-request-service/src/main/resources/application.yml +++ b/backend/reserve-request-service/src/main/resources/application.yml @@ -1,18 +1,18 @@ -spring: - application: - name: reserve-request-service - -server: - port: 0 - -# config server actuator -management: - endpoints: - web: - exposure: - include: refresh, health, beans, info - -info: - app: - name: Reserve Request Service - description: ý û +spring: + application: + name: reserve-request-service + +server: + port: 0 + +# config server actuator +management: + endpoints: + web: + exposure: + include: refresh, health, beans, info + +info: + app: + name: Reserve Request Service + description: 예약시스템 기능 중 예약신청 기능을 제공