Skip to content
  • This project
    • Loading...
  • Sign in

付孟奇 / APImonitor

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • APImonitor
  • ..
  • util
  • GuidGenerator.java
  • 付孟奇's avatar
    init · 6360a17e
    付孟奇 committed 2021-02-05 10:41:14 +0800
    6360a17e
GuidGenerator.java 241 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package com.ecar.apm.util;

import java.util.UUID;

public abstract class GuidGenerator {


    protected GuidGenerator() {
    }

    public static String generate() {
        return UUID.randomUUID().toString().replaceAll("-", "");
    }
}