We upgraded our Wildfly version from 11 to 23.
We have A LOT of JPA queries in our code which mixes positional and named parameters and it was fine in Wildfly 11.
Example of query:
SELECT
o.id FROM com.allot.nms.configuration.device.ejb.DeviceEntity o WHERE
o.id <> ?1 AND (o.deviceNet.netAddress in (:netAdrrList) OR o.uiName = ?2) AND o.administrator <> 3:
Now I am getting error about this in Wildfly 23. Do we have a way to get rid off this error without rewriting our code ?
Thanks,
Arkady