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 个 jsp 文件(索引和 go)和 1 个 java 类 MyClass。在 index.jsp 中,我有一个 MyClass 的实例。我想在 go.jsp 文件中使用这个相同的实例。我怎样才能做到这一点?
谢谢
在 index.jsp 中使用 ->
application.setAttribute("myclass" , new MyClass());
在 go.jsp 中使用 ->
MyClass myclass = (MyClass)application.getAttribute("myclass");
在上面的代码application中是一个应用程序级别的变量,你可以从所有的jsp 和servlet 中访问它。
application