【springboot】springboot加载sqlserver-jdbc兼容sqlserver2000版本
当我们使用其他版本的sql-server-jdbc可能会报版本错误,如下:
com.microsoft.sqlserver.jdbc.SQLServerException: SQL Server version 8 is not supported by this driver.
ClientConnectionId:8e53ee43-33bf-4090-a76f-254730a2df47
或者
该驱动程序不支持 SQL Server 8 版
解决方式,指定3.0版本依赖:
<dependency>
<groupId>com.microsoft</groupId>
<artifactId>sqljdbc4</artifactId>
<version>3.0</version>
</dependency>