1. filterconfig的用法:
filterconfig可以從web.xml當中取得一些有關filter引數,當web應用啟動時就可以獲得了
filterconfig物件提供對servlet環境及web.xml檔案中指派的過濾器名的訪問。
filterconfig物件具有乙個getinitparameter方法,它能夠訪問部署描述符檔案(web.xml)中分配的過濾器初始化引數
例項:將下面的**加入到web.xml中,試用filterconfig就可以獲得以 filter 作為描述標籤內的引數。
cachefilter com.jspbook.cachefilter
/timemonger.jsp nocache /testcache.jsp nocache
cachetimeout 600
locale-sensitive true cachefilter *.jsp
用法:filterconfig.getinitparameter(「locale-sensitive」); 得到的就是 ture
filterconfig.getinitparameter(「cachetimeout」); 得到的就是 600
filterconfig.getinitparameter(request.getrequesturi()); 得到的就是param-name 對應的 param-value 值
過濾處理類:
public class cachefilter implements filter
path = r + path;
public void init(filterconfig filterconfig)
this.sc = filterconfig.getservletcontext();
}public void destroy()
}`
dict的用法 while True的用法
d 直接傳入字典 dict 建立空字典 dict a a b b t t 傳入關鍵字 dict zip one two three 1,2,3 對映函式方式來構造字典 dict one 1 two 2 three 3 可迭代物件方式來構造字典 d.values 只獲取字典中的值 d.keys 只獲取...
undef的用法 undef的用法
define test a 1 define test class a clase t1 include test.h undef test a undef test class a 在這乙個檔案中使用巨集定義 define test a 1 define test class a clase t1...
object args用法 args的用法
object args用法 args和 kwargs主要用於函式定義中。args和 kwargs允許您將可變數量的引數傳遞給函式。變數在這裡的含義是,您事先不知道使用者可以將多少個引數傳遞給您的函式,因此在這種情況下,您將使用這兩個關鍵字。args用於將非關鍵字的可變長度引數列表傳送到函式。這是乙個...