HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
🏠
2차 팀 프로젝트: 오늘의 집
/
⚙️
application.yml
⚙️

application.yml

태그

표준안

spring: datasource: url: jdbc:h2:mem:ohouse username: sa password: driver-class-name: org.h2.Driver jpa: show-sql: true generate-ddl: true database: h2 database-platform: org.hibernate.dialect.H2Dialect open-in-view: false hibernate: ddl-auto: create-drop properties: hibernate: format_sql: true use_sql_comments: true jwt: headerName: Authorization secretKey: ohouseTokenvalidate file: dir: src/main/resources/static/ app: host: http://localhost:8080/
  • 테스트 프로필 설정
    • @ActiveProfile(”test”)
    • @SpringBootTest(properties = "spring.profiles.active:test") ✅
    •