내 Java 응용 프로그램이 견고 해지기 위해 합리적인 단계를 수행하도록 노력하고 있으며 그 중 일부는 정상적으로 종료되는 것과 관련이 있습니다. 셧다운 훅 에 대해 읽고 있는데 실제로 사용하는 방법을 알지 못합니다.
거기에 실용적인 예가 있습니까?
아래와 같은 정말 간단한 응용 프로그램이 있다고 가정 해 보겠습니다.이 응용 프로그램은 파일에 10, 한 줄에 100 개의 일괄 처리로 숫자를 기록하고 프로그램이 중단되면 지정된 일괄 처리가 완료되는지 확인하고 싶습니다. 종료 후크를 등록하는 방법을 얻었지만이를 내 응용 프로그램에 통합하는 방법을 모릅니다. 어떤 제안?
package com.example.test.concurrency;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.PrintWriter;
public class GracefulShutdownTest1 {
final private int N;
final private File f;
public GracefulShutdownTest1(File f, int N) { this.f=f; this.N = N; }
public void run()
{
PrintWriter pw = null;
try {
FileOutputStream fos = new FileOutputStream(this.f);
pw = new PrintWriter(fos);
for (int i = 0; i < N; ++i)
writeBatch(pw, i);
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
finally
{
pw.close();
}
}
private void writeBatch(PrintWriter pw, int i) {
for (int j = 0; j < 100; ++j)
{
int k = i*100+j;
pw.write(Integer.toString(k));
if ((j+1)%10 == 0)
pw.write('\n');
else
pw.write(' ');
}
}
static public void main(String[] args)
{
if (args.length < 2)
{
System.out.println("args = [file] [N] "
+"where file = output filename, N=batch count");
}
else
{
new GracefulShutdownTest1(
new File(args[0]),
Integer.parseInt(args[1])
).run();
}
}
}