In Jsp , about TableWithoutPagination ,please refer to Jmesa's Wiki
<jmesa:tableFacade id="tag" items="${appList}" var="appList" view="com.Joseph.TableWithoutPagination" maxRows="${fn:length(appList)}" >
The important thing is assigning total amount of item ,so I use jstl to tell Jmesa
how many objects there are in the item (Collection).
Your Jsp should include
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
2011年4月20日 星期三
Linux default gateway setup/configure
vi /etc/sysconfig/network
如果不想等重開後才生效
就用route
>route add default gw 172.16.29.126
如果要移除不要的gw
>route delete default gw 172.16.29.254
如果不想等重開後才生效
就用route
>route add default gw 172.16.29.126
如果要移除不要的gw
>route delete default gw 172.16.29.254
訂閱:
文章 (Atom)
COVID-19 確診經歷紀實
原本以為真的是天選之人,就算先前家裡兩個小孩都確診都逃過了(可能有中獎但無症狀吧),不過就在2023年六月18日破解自認為天選之人的"心態",為什麼可以確認就是這天中獎的呢?因為在前都是居家上班,到人多的室內場所都會戴口罩,就剛好這天傍晚原本只想說要去附近的國...
-
因為使用alpine的base image,要讓OS的時區改成自己設定就需要額外安裝tzdata套件,再加上公司環境根本不能連外進行安裝,所以想在docker file設定 ENV TZ=“Asia/Taipei” 或mount volumn使用host的時區 /etc/tim...
-
案例: 收到的request資料中一個JSON格式的資料要保存,但為何不存JSON的字串就好?因為這個資料會不斷變動的,所以收到變動只要取出這個已將JSON轉成list的添加或刪除東西就好,不用再將JSON轉成list再轉回JSON存到DB去。 在Hibernate中是設定該欄...
-
Env. restriction : request and response are both JSON format . Version of Jmeter is higher and equal to 2.6 1. Add new test plan 2. ...