上下文问题(很简单的)
ServletContext context = getServletContext(); //这容器有什么用Integer count = (Integer) context.getAttribute("counter"); //counter哪来的
if(count==null)
{
count = new Integer(1);
}else{
count = new Integer(count.intValue()+1);
}
context.setAttribute("counter", count); //设置counter的属性是什么意思
搜索更多相关主题的帖子:
上下文 context
----------------解决方案--------------------------------------------------------
getServletContext()方法得到该servlet运行其中的这个背景对象,从这个背景对象中你可以访问如下信息资源:
1.初始化参数
2.存储在背景中的对象
3.与背景关联的资源
4.日志
counter是哪儿来的?
首先要理解这段代码的功能,大概可以理解为一个计数器程序。进来一个counter就累加一次。
所以这个counter是设置进去的,正如最后一句一样。
当然了第一次进来,取counter的结果,count一定是null的。
----------------解决方案--------------------------------------------------------
谢谢
----------------解决方案--------------------------------------------------------