Modelmapper is not recognizing UUIDs
问题 Hey I just began playing around with Modelmapper to map jOOQ records to POJOs. This is the schema for the table whose records I am attempting to convert (Postgresql) CREATE TABLE IF NOT EXISTS actor( actor_id UUID DEFAULT uuid_generate_v4(), first_name VARCHAR(256) NOT NULL, last_name VARCHAR(256) NOT NULL, PRIMARY KEY(actor_id) ); Here is what the POJO looks like: @JsonDeserialize(builder = Actor.Builder.class) public class Actor { private final UUID actorId; private final String firstName;