Answers for "application.properties for connecting spring to microsoft sql server"

0

application.properties for connecting spring to microsoft sql server

logging.level.org.hibernate.SQL=DEBUG

spring.datasource.url=jdbc:sqlserver://$AZ_DATABASE_NAME.database.windows.net:1433;database=demo;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30;
spring.datasource.username=spring@$AZ_DATABASE_NAME
spring.datasource.password=$AZ_SQL_SERVER_PASSWORD

spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=create-drop
Posted by: Guest on August-17-2021

Code answers related to "application.properties for connecting spring to microsoft sql server"

Browse Popular Code Answers by Language