File size: 276 Bytes
ca17a67 | 1 2 3 4 5 6 7 8 9 10 11 12 | # Spring Boot Configuration
spring.application.name=encoder
server.servlet.contextPath=/encoder
# Logging configuration
logging.level.org.springframework.tutorial.encoder=INFO
logging.pattern.console=%d{yyyy-MM-dd HH:mm:ss} - %msg%n
# Server configuration
server.port=8080
|