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.
私のプロジェクトには2つのサーブレットがあり、2番目は1番目のサーブレットから呼び出されます。最初のサーブレットで http セッションを作成し、そのセッション オブジェクトにいくつかの属性を設定します。2 番目のサーブレットでこれらの属性の値を取得するにはどうすればよいですか?
前もって感謝します。
Object value = request.getSession().getAttribute("nameOfTheAttributeUsedInTheFirstServlet");
2 つのサーブレットが同じ webapp にある場合、それらは同じセッション コンテキストを共有し、セッションは両方のサーブレットで同じです。もちろん、セッションは特定のユーザーに限定されていることを覚えておいてください。