I want to know how to set oracle JDBC url with ssl properties in mule esb.
for mysql I came to know that we can have the url like below
jdbc:mysql://hostname:port/dataService?useSSL=true&requireSSL=true&verifyServerCertificate=true&trustCertificateKeyStoreUrl=file:\\C:\Users\ad\localhost-truststore.jks&trustCertificateKeyStorePassword=xyxyxy
For oracle can we add the properties like above (requireSSL, verifyServerCertificate, trustCertificateKeystore etc..) in url ?
The url that I have now is
jdbc:oracle:thin:${oracledb.userName}/${oracledb.password}@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCPS)(HOST=${oracledb.host})(PORT=${oracledb.port}))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=${oracledb.service})))