27 lines
799 B
Properties
27 lines
799 B
Properties
spring.application.name=axhub-admin
|
|
|
|
# Gateway Fallback Routing (For unregistered tools)
|
|
mcp.gateway.fallback.routes.email=http://tool-email:8083
|
|
mcp.gateway.fallback.routes.sms=http://tool-sms:8082
|
|
mcp.gateway.fallback.default-url=http://tool-other:8084
|
|
|
|
server.port=8081
|
|
server.http2.enabled=true
|
|
|
|
# 기본적으로 local 환경을 실행
|
|
spring.profiles.active=local
|
|
|
|
# MyBatis 공통 설정
|
|
mybatis.mapper-locations=classpath:mapper/**/*.xml
|
|
mybatis.type-aliases-package=
|
|
mybatis.configuration.map-underscore-to-camel-case=true
|
|
spring.sql.init.mode=always
|
|
|
|
logging.level.com.corundumstudio.socketio=DEBUG
|
|
|
|
# 우아한 종료 (Graceful Shutdown) 설정
|
|
server.shutdown=graceful
|
|
spring.lifecycle.timeout-per-shutdown-phase=20s
|
|
# Suppress Kafka Connection Logs
|
|
logging.level.org.apache.kafka=ERROR
|