Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定のジョブを実行する Java ファイルからパラメータを index.jsp ファイルに送信したいと考えています。それを達成する方法は?基本的に、私のアプリケーションは wsdl リンクからデータを取得し、Java ファイルがそれを処理します。そして、javaファイルの出力をjspに渡したいです。
前もって感謝します。
request.setAttribute("value",valueFromWSDL);
これは Java で設定できます。
index.jsp で使用できます
request.getAttribut("value");
値を取得する