skip to Main Content

Redis – Qclass dose not generated(non-existent Qclass) witth Springboot3 + JDK17 + Gradle

spirngboot 3.3.1 + JDK17; Problem occurred during migration from Springboot 2.7 to 3.3 my build.gradle.kts enter image description hereplugins { id("java") id("org.springframework.boot") version "3.3.1" id("io.spring.dependency-management") version "1.1.5" } group = "back.ecommerce" version = "0.0.1-SNAPSHOT" java { sourceCompatibility = JavaVersion.VERSION_17 }…

VIEW QUESTION

Postgresql custom expression with QueryDSL

I have a trouble with writing custom boolean template for where clause using QueryDSL. Simply I need to use arraycontains function to know that table.languages contains values at array of strings from filter. Why Hibernate can't execute this? The raw…

VIEW QUESTION
Back To Top
Search