skip to Main Content

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