Anda harus mengonversi UUID ke array byte. Lihat metode asByte bagaimana melakukannya.
Setelah itu, pengikatannya sesederhana menggunakan setBytes
.
Contoh
def stmt = con.prepareStatement("insert into TAB_UUID (id, uuid) values (?,?)")
// bind
stmt.setInt(1,1)
def uuid = UUID.randomUUID()
stmt.setBytes(2,asBytes(uuid))
def rowCount = stmt.executeUpdate()
Di sini untuk berjaga-jaga jika tautan tidak berfungsi, metode konversi UUID ke array byte
public static byte[] asBytes(UUID uuid) {
ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return bb.array();
}