Skip to content

Instantly share code, notes, and snippets.

@zhaohuabing
Created August 24, 2019 02:24
Show Gist options
  • Save zhaohuabing/5f58abb9e233d699f2e056d93fdcbb27 to your computer and use it in GitHub Desktop.
Save zhaohuabing/5f58abb9e233d699f2e056d93fdcbb27 to your computer and use it in GitHub Desktop.
@Component
public class DBAccess {
@Traced
public void save2db() {
try {
Thread.sleep((long) (Math.random() * 100));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment