Version: 22.1.0-SNAPSHOT
The class of concern is JDBCDataSourceService.
After upgrade of jackson-databind to 2.12.1 in wrensec-parent, I stumbled uphon an issue FasterXML/jackson-databind#2410 - meaning deserialization of com.zaxxer.HikariConfig is now prohibited.
As a workaround, usage of this class was replaced by HikariConfigEx subclass which is empty, but changes the type to dodge being blocked by jackson's SubTypeValidator.
This solution is dirty and requires further investigation - possibly completely changing the way configuration is deserialized.
The result of this issue should be a proposal of a clean solution for this problem.
Version:
22.1.0-SNAPSHOTThe class of concern is
JDBCDataSourceService.After upgrade of
jackson-databindto2.12.1inwrensec-parent, I stumbled uphon an issue FasterXML/jackson-databind#2410 - meaning deserialization ofcom.zaxxer.HikariConfigis now prohibited.As a workaround, usage of this class was replaced by
HikariConfigExsubclass which is empty, but changes the type to dodge being blocked by jackson'sSubTypeValidator.This solution is dirty and requires further investigation - possibly completely changing the way configuration is deserialized.
The result of this issue should be a proposal of a clean solution for this problem.