Conenct mssql using windows authentication from spring boot
1. Add Dependencies
In your pom.xml (for Maven), add the following dependencies:
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>11.2.0.jre8</version> // optional for spring boot
</dep...
shohanur.hashnode.dev2 min read