Configure SQL Server connection pool on Tomcat

前端 未结 2 761
别那么骄傲
别那么骄傲 2020-12-15 14:00

I\'ve been trying to configure a connection pool for a SQL Server 2012 database. I currently have Informix and Oracle pools configured and working, only SQL Server is giving

2条回答
  •  春和景丽
    2020-12-15 14:32

    We found our problem.

    driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver"
    

    Should have been

    driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
    

提交回复
热议问题