servlet上下文,set属性和请求调度程序在servlet程序中的作用

时间:2015-02-09 04:49:02

标签: servlets

ServletContext sc=getServletContext();
sc.setAttribute("UserName", str1);

这些代码在servlet中的作用是什么。

1 个答案:

答案 0 :(得分:0)

根据您的代码

ServletContext sc=getServletContext();
sc.setAttribute("UserName", str1);

这是将str1的值设置为“UserName”属性,并且可以在servlet或JSP中的整个应用程序中使用该值。将属性设置为上下文可确保属性值可用且可访问在整个申请中