skip to Main Content

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

Point data type into MySQL8

I have a class with JTS point: @Entity @Data public class Check { @Id @GeneratedValue(strategy = IDENTITY) private Long id; private Point location; I then want to save that point to my database Point location = new GeometryFactory().createPoint((new Coordinate(10, 10,…

VIEW QUESTION

Exclude from logs in Java – DEBUG com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire

Have a Spring Boot project and while running integration tests I get plenty of these debug messages. Which library is generating them and how to exclude them properly? 13:41:03.966 [ducttape-1] DEBUG com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire - http-outgoing-3 >> "accept: application/json[r][n]" 13:41:03.966 [ducttape-1] DEBUG…

VIEW QUESTION
Back To Top
Search