本文整理了Java中org.springframework.util.StopWatch.getId()
方法的一些代码示例,展示了StopWatch.getId()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。StopWatch.getId()
方法的具体详情如下:
包路径:org.springframework.util.StopWatch
类名称: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();
}
内容来源于网络,如有侵权,请联系作者删除!