我想在使用Jersey和Tomcat保护的应用程序中使用我的jdbc连接. mySQL服务器已经支持SSL,我在运行NetBeans的计算机上有必要的SSL证书文件,我可以使用MySQL Workbench的SSL连接到mySQL服务器.
目前,不安全连接的定义如下:
<Resource name="jdbc/Colabo" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="30" maxWait="10000"
username="xxxx" password="yyyyy" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://ip.address:3306/db?autoReconnect=true"/>
如何在context.cml文件的部分中指定应使用SSL完成连接?
解决方法:
灵感来自类似问题的答案 – Configure spring to connect to mysql over ssl.
SSL设置可以在URL中传递:
url="jdbc:mysql://ip.address:3306/db?autoReconnect=true&verifyServerCertificate=false&useSSL=true&requireSSL=true"/
我没有找到如何使verifyServerCertificate = true选项工作的方法 – 可能需要指定CA证书的位置是一些设置.