Project Template에 포함되면 좋을듯한 것? #2
snowykte0426
started this conversation in
기능추가
Replies: 5 comments 11 replies
-
spring:
application:
name: Springboot-Project-Template
datasource:
url: jdbc:${DB_TYPE:mysql}://${DB_HOST:localhost}:${DB_PORT:3306}/${DB_NAME:mydb}
username: ${DB_USERNAME:root}
password: ${DB_PASSWORD:password}
driver-class-name: ${DB_DRIVER:com.mysql.cj.jdbc.Driver}
hikari:
maximum-pool-size: 10
minimum-idle: 5
idle-timeout: 30000
pool-name: HikariCP
max-lifetime: 600000
connection-timeout: 30000
jpa:
hibernate:
ddl-auto: ${JPA_DDL_AUTO:update}
show-sql: ${JPA_SHOW_SQL:true}
properties:
hibernate:
format_sql: true
dialect: ${HIBERNATE_DIALECT:org.hibernate.dialect.MySQLDialect}
data:
redis:
lettuce:
pool:
max-active: 10
max-idle: 5
min-idle: 1
max-wait: 30000
host: ${REDIS_HOST:localhost}
port: ${REDIS_PORT:6379}
password: ${REDIS_PASSWORD:}
database: ${REDIS_DATABASE:0}
docker:
compose:
enabled: true
server:
port: ${SERVER_PORT:8080}
shutdown: graceful이런식으로 미리 설정해놔도 좋을 듯 |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
추가한 종속성들
|
Beta Was this translation helpful? Give feedback.
5 replies
-
|
참고 블로그 글
Spotless 포맷터를 적용해두는것에 대해 어떻게 생각하시나요? 실제 사용사례 PR |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Swagger 있으면 프론트엔드 개발자 입장에서 좋을 것 같습니다. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Project Template에 포함되면 좋을 것 같은 것들을 논의해봐요
Beta Was this translation helpful? Give feedback.
All reactions