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.
以下のようなシナリオがあります。jsp1、jsp2、jsp3 の 3 つの jsp ページがあります。jsp1 は jsp2 を呼び出し、jsp2 は jsp3 を呼び出します。
jsp1 から jsp2 に http リクエストを送信しています。リクエスト オブジェクトのパラメータにさらに値を追加し、それを jsp3 に転送したいと思います。その方法を教えてください。
パラメータの代わりに、次を使用してリクエスト属性を追加できますrequest.setAttribute(attributeName, attributeValue)
request.setAttribute(attributeName, attributeValue)