server.port=8081
api.base-url=http://localhost:8080
# Thymeleaf
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML
spring.thymeleaf.encoding=UTF-8
# ???????????
logging.level.root=INFO
logging.level.com.example.locationweb=DEBUG
logging.level.org.springframework.web=DEBUG
logging.level.org.springframework.web.client=DEBUG
logging.file.name=logs/application.log
logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n
logging.pattern.file=%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n
# Actuator ??? ???????????
management.endpoints.web.exposure.include=health,info,metrics
management.endpoint.health.show-details=always
# ????????? RestClient
rest.client.connection-timeout=5000
rest.client.read-timeout=10000