Configure SQL Server connection pool on Tomcat

南笙酒味 提交于 2019-11-29 00:23:47

We found our problem.

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

Should have been

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

It seems to me that the java side is correctly configured.

Can you access the server using another JDBC connection (for example SquirrelSQL or similar software)?

If you can't access to the server using Squirrel, maybe you did not enable the TCP/IP access to your server, in this case, follow the accepted answer of Enable remote connections for SQL Server Express 2012

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!