This repository has been archived on 2018-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
url-shortener/src/main/resources/application.properties

9 lines
308 B
INI

spring.main.banner-mode = off
server.port = 8111
spring.datasource.url = jdbc:mysql://127.0.0.1:3306/url_shortener?autoReconnect=true&useSSL=false
spring.datasource.username = username
spring.datasource.password = password
spring.datasource.testWhileIdle = true
spring.datasource.validationQuery = SELECT 1