Please use the following query and alter your table :
CREATE SEQUENCE user_id_seq START 1;
ALTER TABLE product.users ALTER COLUMN user_id SET DEFAULT nextval('user_id_seq');
ALTER SEQUENCE users.user_id_seq OWNED BY users.user_id;
and use the this in your entity class
@GeneratedValue(strategy = GenerationType.SEQUENCE,generator="user_id_seq")