Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ dependencies {
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
implementation 'com.h2database:h2'
}

tasks.named('test') {
Expand Down
36 changes: 25 additions & 11 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
server:
port: 8080
tomcat:
max-connections: 20000
threads:
max: 600
min-spare: 100
#server:
# port: 8080
# tomcat:
# max-connections: 20000
# threads:
# max: 600
# min-spare: 100
#
#spring:
# application:
# name: server
# profiles:
# active: local-dev # 기본 활성화 프로필

spring:
application:
name: server
profiles:
active: local-dev # 기본 활성화 프로필
datasource:
url: jdbc:h2:mem:testdb
driver-class-name: org.h2.Driver
username: sa
password:
h2:
console:
enabled: true
jpa:
hibernate:
ddl-auto: update
show-sql: true
Loading