Commit 6288018b by Thaswin Muralikaran

Update application.properties

parent edf1ef53
spring.application.name=my-product-management-svc
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/productmngm?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
spring.datasource.username=root
spring.datasource.password=01234
spring.datasource.url=jdbc:mysql://${DB_ADDRESS:127.0.0.1}:${DB_PORT:3306}/${DB_NAME:productmngm}?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
spring.datasource.username=${DB_USERNAME:root}
spring.datasource.password=${DB_PASSWORD:01234}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.show-sql=true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment