Jose Amoros
Jose Amoros
Adding the 'shared-bouncycastle' library is now causing a cyclic issue during startup in Tomcat, so having it included is not a good workaround. `Caused by: java.lang.IllegalStateException: Unable to complete the...
Thanks for your response @tonywasher ! I am aware of that post and the dependency hell (hehe) that I'm currently in. The reason I upgraded BC is to prepare to...
That worked. The query: ``` String query = "instance.id==1"; ``` I created a new parent class ``` @MappedSuperclass @NoArgsConstructor @Getter @Setter @Accessors(chain = true) @EqualsAndHashCode public class NonGenericAbstractEntity { @Id...
I think I am fine with removing the generic for the concrete Long for the ID, but I was wondering if there was something to fix it. This is the...
It's Object instead of String, here is the log (with some previous lines) ``` i.github.perplexhub.rsql.RSQLJPASupport : toSpecification(Instance.id==1,distinct:false,propertyPathMapper:null,customPredicates:0,joinHints:null,propertyWhitelist:null,propertyBlacklist:null) i.g.p.rsql.RSQLJPAPredicateConverter : visit(node:Instance.id=='1',root:com.workflow.InstanceVariable) i.g.perplexhub.rsql.RSQLVisitorBase : Found managed type [class com.workflow.InstanceVariable] in EntityManager [jpaSharedEM_AWC_entityManagerFactory]...
You're correct, that it's returning Object instead of Long. I put a breakpoint however I cannot find any reasons why this would be. Is there any additional info I can...