블로그 이미지
암초보

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

Tag

01-09 02:40
2013. 11. 27. 12:58 프로그래밍/Servlet&JSP

varStatus를 이용한다.

예시)

<c:forEach varStatus="status .........>

${status.index} 또는 ${status.count}

index는 0부터 count는 1부터

'프로그래밍 > Servlet&JSP' 카테고리의 다른 글

fmt:parseDate 와 fmt:formatDate  (0) 2013.05.20
URLDecoder  (0) 2009.08.05
JSP 쿠키 생성, 삭제  (0) 2009.08.04
posted by 암초보
2013. 10. 31. 17:35 DB/MySQL

mysqldump --routines --no-create-info --no-data --no-create-db --skip-opt -u계정 -p 데이터베이스이름 > 백업할 파일이름

'DB > MySQL' 카테고리의 다른 글

selecting top N records per group  (0) 2014.08.12
INSERT IGNORE  (0) 2013.11.29
The Rows Holding the Group-wise Maximum of a Certain Column  (0) 2013.10.23
datadir 변경에 대한 답변  (0) 2013.09.25
SELECT 결과 INSERT하기  (0) 2013.09.12
posted by 암초보
2013. 10. 31. 17:26 프로그래밍/Java
posted by 암초보