Files
pinpoint-docker-fork/pinpoint-agent-attach-example/java/build/Sample.java
woozu-shin 1e39a6fb26 v.2.5.3
2023-10-12 14:44:09 +09:00

14 lines
335 B
Java

public class Sample {
public static void main(String[] args) {
System.out.println("Sample Java Start");
try {
while (true) {
Thread.sleep(1000);
}
}
catch (java.lang.InterruptedException e) {
System.out.println("Test Finished");
}
}
}