アプリケーションサーバーでメモリ不足を生成する war アプリケーションを作成したいと考えています。このコードが表示されます。戦争中にjspでコンパイルするにはどうすればよいですか? ありがとう
import java.util.ArrayList;
class TestOome {
public static void main(String[] args) {
long start = System.currentTimeMillis();
byte[] buffer = new byte[2^20];
ArrayList<String> list = new ArrayList<String>();
try {
while (true) {
list.add("Lollygobblenlissbomb");
}
} catch (Throwable t) {
long end = System.currentTimeMillis();
buffer = null;
System.err.println(t + " in " + (end-start) + " millis.");
}
}
}