calculator-project/src/main/resources/application.properties

14 lines
386 B
Properties

#Spring Boot server configuration
#Port 8000 is used by other things on my workstations
server.address=0.0.0.0
server.port=9090
#H2 console web access configuration
#Open "http://0.0.0.0:8000/h2-console" and hit "Connect" button
spring.h2.console.enabled=true
spring.h2.console.path=/h2-console
spring.main.banner-mode=off
logging.level.org.springframework=OFF
logging.level.root=OFF