⚡Como solucionar conexion entre Spring Boot y Sql Server

Опубликовано: 16 Май 2026
на канале: Keynton888
1,855
39

spring.datasource.url=jdbc:sqlserver://localhost;databaseName=nombre de su DB
spring.datasource.username=sa
spring.datasource.password=la que tiene configurada
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql = true
Hibernate ddl auto (create, create-drop, validate, update)
spring.jpa.hibernate.ddl-auto = update
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.SQLServerDialect