Skip to content

KEA4th-Boosting/product-service

Repository files navigation

🎉 Product Service 🎉

📖 Description

카카오엔터프라이즈 SW아카데미 Team Boosting 사내 휴양시설 추첨 시스템

Product service는 재화(티켓, 휴양시설)과 같은 재화를 생성, 수정, 삭제를 담당하는 시스템입니다.

📦 Installation

$ git clone https://github.com/KEA4th-Boosting/product-service.git

$ cd product-service

🏃‍♂️ Running the app

# development
 ./gradlew bootRun

🧪 Test

./gradlew test

⚙️ application.yaml

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: 
    username: 
    password: 
  application:
    name: product-service
  jpa:
    properties:
      hibernate:
        show_sql: 'true'
        format_sql: 'true'
        highlight_sql: true # ANSI 코드에 색을 나타낸다
        use_sql_comments: true # SQL 내부에 /* */ 주석 추가
    hibernate:
      ddl-auto: update
    open-in-view: false
  servlet:
    multipart:
      enabled: true
      max-file-size: 10MB
      max-request-size: 20MB
  profiles:
    include: private
springdoc:
  swagger-ui:
    path: /swagger-ui.html # 스웨거 접근 경로
    groups-order: DESC # API 그룹 표시 순서

    # alpha: 알파벳 순 정렬
    # method: OpenAPI specification file에 원하는 태그 정렬 방식 직접 기재

    operations-sorter : method # 메소드 순서대로 정렬
    tags-sorter: alpha # 태그 정렬 순서
  api-docs:
    version: openapi_3_0 # OpenAPI 버전
logging:
    level:
        org:
        springframework:
            web: DEBUG
            data: DEBUG
        com:
        boosting:
            product: DEBUG

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •