类 VersionUtil

java.lang.Object
com.alibaba.csp.sentinel.util.VersionUtil

public final class VersionUtil extends Object
Get version of Sentinel from MANIFEST.MF file.
从以下版本开始:
0.2.1
作者:
jason
  • 方法详细资料

    • getVersion

      public static String getVersion(String defaultVersion)
    • fromVersionString

      public static int fromVersionString(String verStr)
      Convert version in string like x.y.z or x.y.z.b into number
      Each segment has one byte space(unsigned)
      eg.
       1.2.3.4 => 01 02 03 04
       1.2.3   => 01 02 03 00
       1.2     => 01 02 00 00
       1       => 01 00 00 00
       
      返回: