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

14 lines
386 B
Properties
Raw Normal View History

2023-05-24 20:01:54 +00:00
#Spring Boot server configuration
#Port 8000 is used by other things on my workstations
2023-05-24 20:01:54 +00:00
server.address=0.0.0.0
2023-07-19 07:23:22 +00:00
server.port=9090
2023-05-24 20:01:54 +00:00
#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