[error]
Java.lang.illegalargumentexception: encrypted array valued parameter binding, but was expecting [java.lang.string (n/a)]
JPA user-defined query statement fills the placeholder of in() with parameter value, and an error is reported
[reason]
The parameter value I passed in is of array type, but the in parameter value of JPA does not support array
[solution]
When setting the in parameter, the passed in parameter must be of type list.