Java をフロント エンドとして使用し、シェル スクリプトをバック エンドとして使用する Web アプリケーションを開発しています。シェル スクリプトで大量のファイルを処理する必要があります。シェル スクリプトで 1000 個のファイルを処理する必要があるとします。Javaの次のコードを使用しています
for(i from 1..1000)
{
Call shell script to process file i
}
内部的にシェルスクリプトで、いくつかの処理ロジックを実行し、o/p をローカルファイルに保存しています (これは Java からアクセスできます)。
My requirement is, for everytime the shell script being called, an output is generated to a file. so as an when the control from shell script to java, I have to process it and display it in the front end. But the for loop should not break. It has to carry on with as it is but some front end work of displaying this file should also take place.
これについて検索してみましたが、得られた推奨事項は、これに AJAX とロングポーリングを使用し、スレッド化することです。これに関するいくつかのアイデアを共有していただけますか。ありがとうございました。