All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.mybatisboost.generator.UuidGenerator Maven / Gradle / Ivy

The newest version!
package cn.mybatisboost.generator;

import java.util.UUID;

public class UuidGenerator implements ValueGenerator {

    @Override
    public String generateValue(Class type, Class fieldType) {
        return UUID.randomUUID().toString().replace("-", "");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy