org.springframework.util.StopWatch.getId()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(144)

本文整理了Java中org.springframework.util.StopWatch.getId()方法的一些代码示例,展示了StopWatch.getId()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。StopWatch.getId()方法的具体详情如下:
包路径:org.springframework.util.StopWatch
类名称:StopWatch
方法名:getId

StopWatch.getId介绍

[英]Return the id of this stop watch, as specified on construction.
[中]按照施工图上的规定,返回此秒表的id。

代码示例

代码示例来源:origin: spring-projects/spring-framework

/**
 * Return a short description of the total running time.
 */
public String shortSummary() {
  return "StopWatch '" + getId() + "': running time (millis) = " + getTotalTimeMillis();
}

代码示例来源:origin: org.springframework/spring-core

/**
 * Return a short description of the total running time.
 */
public String shortSummary() {
  return "StopWatch '" + getId() + "': running time (millis) = " + getTotalTimeMillis();
}

代码示例来源:origin: spring-projects/spring-framework

assertTrue(toString.contains(name2));
assertEquals(id, sw.getId());

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-core

/**
 * Return a short description of the total running time.
 */
public String shortSummary() {
  return "StopWatch '" + getId() + "': running time (millis) = " + getTotalTimeMillis();
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Return a short description of the total running time.
 */
public String shortSummary() {
  return "StopWatch '" + getId() + "': running time (millis) = " + getTotalTimeMillis();
}

相关文章