四大作用域:
web應(yīng)用中的變量存放在不同的jsp對(duì)象中,會(huì)有不一樣的作用域,四種不同的作用域排序是 pagecontext < request < session < application;
1、pagecontext:頁(yè)面域,僅當(dāng)前頁(yè)面有效,離開(kāi)頁(yè)面后,不論重定向還是轉(zhuǎn)向(即無(wú)論是redirect還是forward),pagecontext的屬性值都失效;
2、request:請(qǐng)求域,在一次請(qǐng)求中有效,如果用forward轉(zhuǎn)向,則下一次請(qǐng)求還可以保留上一次request中的屬性值,而redirect重定向跳轉(zhuǎn)到另一個(gè)頁(yè)面則會(huì)使上一次request中的屬性值失效;
3、session:會(huì)話域,在一次會(huì)話過(guò)程中(從瀏覽器打開(kāi)到瀏覽器關(guān)閉這個(gè)過(guò)程),session對(duì)象的屬性值都保持有效,在這次會(huì)話過(guò)程,session中的值可以在任何頁(yè)面獲取;
4、application:應(yīng)用域,只要應(yīng)用不關(guān)閉,該對(duì)象中的屬性值一直有效,并且為所有會(huì)話所共享。
利用servletcontextlistener監(jiān)聽(tīng)器,一旦應(yīng)用加載,就將properties的值存儲(chǔ)到application當(dāng)中
現(xiàn)在需要在所有的jsp中都能通過(guò)el表達(dá)式讀取到properties中的屬性,并且是針對(duì)所有的會(huì)話,故這里利用application作用域,
那么什么時(shí)候?qū)roperties中的屬性存儲(chǔ)到application呢?因?yàn)槭菍roperties的屬性值作為全局的變量以方便任何一次el的獲取,所以在web應(yīng)用加載的時(shí)候就將值存儲(chǔ)到application當(dāng)中,
這里就要利用servletcontextlistener:
servletcontextlistener是servlet api 中的一個(gè)接口,它能夠監(jiān)聽(tīng) servletcontext 對(duì)象的生命周期,實(shí)際上就是監(jiān)聽(tīng) web 應(yīng)用的生命周期。
當(dāng)servlet 容器啟動(dòng)或終止web 應(yīng)用時(shí),會(huì)觸發(fā)servletcontextevent 事件,該事件由servletcontextlistener 來(lái)處理。
具體步驟如下:
1、新建一個(gè)類(lèi)propertylistenter實(shí)現(xiàn) servletcontextlistener接口的contextinitialized方法;
2、讀取properties配置文件,轉(zhuǎn)存到map當(dāng)中;
3、使用servletcontext對(duì)象將map存儲(chǔ)到application作用域中;
/** * 設(shè)值全局變量 * @author meikai * @version 2017年10月23日 下午2:15:19 */ public class propertylistenter implements servletcontextlistener { /* (non-javadoc) * @see javax.servlet.servletcontextlistener#contextdestroyed(javax.servlet.servletcontextevent) */ @override public void contextdestroyed(servletcontextevent arg0) { // todo auto-generated method stub } /* (non-javadoc) * @see javax.servlet.servletcontextlistener#contextinitialized(javax.servlet.servletcontextevent) */ @override public void contextinitialized(servletcontextevent sce) { /** * 讀取properties文件 * */ final logger logger = (logger) loggerfactory.getlogger(propertylistenter.class); properties properties = new properties(); inputstream in = null; try { //通過(guò)類(lèi)加載器進(jìn)行獲取properties文件流 in = propertiesutil.class.getclassloader().getresourceasstream("kenhome-common.properties"); properties.load(in); } catch (filenotfoundexception e) { logger.error("未找到properties文件"); } catch (ioexception e) { logger.error("發(fā)生ioexception異常"); } finally { try { if(null != in) { in.close(); } } catch (ioexception e) { logger.error("properties文件流關(guān)閉出現(xiàn)異常"); } } /** * 將properties文件轉(zhuǎn)存到map */ map pros = new hashmap((map)properties); /** * 將map通過(guò)servletcontext存儲(chǔ)到全局作用域中 */ servletcontext sct=sce.getservletcontext(); sct.setattribute("pros", pros); } }
4、在web.xml中配置上面的的監(jiān)聽(tīng)器propertylistenter:
com.meikai.listener.propertylistenter
配置好后,運(yùn)行web應(yīng)用,就能在所有的jsp頁(yè)面中用el表達(dá)式獲取到properties中的屬性值了。
- jsp+servlet實(shí)現(xiàn)文件上傳與下載功能
- EJB3.0部署消息驅(qū)動(dòng)Bean拋javax.naming.NameNotFoundException異常
- 在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 秒殺系統(tǒng)Web層設(shè)計(jì)的實(shí)現(xiàn)方法
- 將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法
- JSP使用過(guò)濾器防止Xss漏洞
- 在JSP頁(yè)面中動(dòng)態(tài)生成圖片驗(yàn)證碼的方法實(shí)例
- 詳解JSP 內(nèi)置對(duì)象request常見(jiàn)用法
- 使用IDEA編寫(xiě)jsp時(shí)EL表達(dá)式不起作用的問(wèn)題及解決方法
- jsp實(shí)現(xiàn)局部刷新頁(yè)面、異步加載頁(yè)面的方法
- Jsp中request的3個(gè)基礎(chǔ)實(shí)踐
- JavaServlet的文件上傳和下載實(shí)現(xiàn)方法
- JSP頁(yè)面的靜態(tài)包含和動(dòng)態(tài)包含使用方法