jsp 遺漏部分內容

2021-08-30 13:04:50 字數 1204 閱讀 8364

1.web-inf 目錄的檔案外界不能直接訪問,因此可以通過把一些後台的jsp檔案放在web-inf 資料夾中以提高安全性.

同時可以通過程式配置去訪問這些頁面,在 web.xml中作出一定的配置即可.

頁面部分

<%

//可以通過 config 內建物件獲取配置在 web.xml中的值

string user = config.getinitparameter("username");

string password = config.getinitparameter("password");

%>

2.關於 session 的部分

<%

//得到 session id 32位

out.print("session id:"+session.getid());

//判斷 session 是否是新的

boolean isnew = session.isnew();

out.print("session is new :"+isnew);

//session建立時間

long createtime = session.getcreationtime();

out.print("session createtime:"+new date(createtime));

//session 使用者最後的操作時間

long lasttime = session.getlastaccessedtime();

out.print("last time:"+new date(lasttime));

//session 最大非間隔活動時間

out.print("max inactive time:"+session.getmaxinactiveinterval());

%>

3.關於 response

response.setheader();可以用來設定頭資訊

response.setheader("refresh","1"); //1秒鐘重新整理一次

response.setheader("refresh","3;url=跳轉的url位址"); //3秒鐘後自動跳轉

CSS部分內容

一.css部分內容 引入 1 行間樣式 關鍵字style 2 內嵌樣式 關鍵字style 3 外聯樣式 關鍵字 link 選擇器 id選擇器 class選擇器 後代選擇器 父元素 子元素 子代選擇器 父元素 子元素 多種 組合選擇器 元素1,元素2,偽類選擇器 元素 hover 滑鼠移動到元素上時的...

mysql 替換字段部分內容

mysql replace的用法 替換某欄位部分內容 mysql replace的用法 1.replace into replace into table id,name values 1 aa 2 bb 此語句的作用是向表table中插入兩條記錄。如果主鍵id為1或2不存在就相當於 insert ...

mysql 替換字段部分內容

mysql replace的用法 替換某欄位部分內容 mysql replace的用法 1.replace into replace into table id,name values 1 aa 2 bb 此語句的作用是向表table中插入兩條記錄。如果主鍵id為1或2不存在就相當於 insert ...