java.lang.IllegalArgumentException: Failed to decrypt.

加密失败。

附加信息:

org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for transaction; nested exception is java.lang.IllegalArgumentException: Failed to decrypt.

数据库连接配置设置成了加密。

<!--<property name="connectionProperties" value="config.decrypt=true"/>-->
<property name="connectionProperties" value="config.decrypt=false"/>
改成false。
设置不加密数据库密码。
点赞