refactor: migrate all properties files to yaml
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 0s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 0s
This commit is contained in:
41
dap-gateway/src/main/resources/application-local.yml
Normal file
41
dap-gateway/src/main/resources/application-local.yml
Normal file
@@ -0,0 +1,41 @@
|
||||
# Local 환경 전용 설정 (H2 메모리 DB 등)
|
||||
spring:
|
||||
datasource:
|
||||
url: jdbc:p6spy:h2:mem:testdb;DB_CLOSE_DELAY=-1;
|
||||
driverClassName: com.p6spy.engine.spy.P6SpyDriver
|
||||
username: sa
|
||||
password: password
|
||||
h2:
|
||||
console:
|
||||
enabled: true
|
||||
autoconfigure:
|
||||
exclude: org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration
|
||||
|
||||
eims:
|
||||
http:
|
||||
url: http://localhost:${server.port}/api/gateway
|
||||
tcp:
|
||||
host: 127.0.0.1
|
||||
port: 8090
|
||||
timeout: 5000
|
||||
jsp:
|
||||
form:
|
||||
url: http://localhost:${server.port}/mock/jsp-form
|
||||
json:
|
||||
url: http://localhost:${server.port}/mock/jsp-json
|
||||
mci:
|
||||
url: http://localhost:${server.port}/api/mock/esb/api
|
||||
mcistring:
|
||||
url: http://localhost:${server.port}/api/mock/esb/string
|
||||
|
||||
mcp:
|
||||
adapter:
|
||||
url: http://localhost:${server.port}/rpc/v1/execute
|
||||
gateway:
|
||||
url: http://localhost:${server.port}/mcp/api/v1
|
||||
tool:
|
||||
host: localhost
|
||||
|
||||
logging:
|
||||
level:
|
||||
org.apache.kafka: ERROR
|
||||
Reference in New Issue
Block a user