JSP include 사용
include 호출 페이지
<jsp:include page="../include/menu.jsp">
<jsp:param name="type" value="tag" />
<jsp:param name="title" value="<h1 class='area-logo'> ****MY_LOGO**** </h1>" />
</jsp:include>
title 로 전달하는 종류가 2가지인 경우 type
으로 그 대상을 구분합니다.
tag
: 전달된 내용을 그대로 출력text
: 텍스트를 일정 태그안에 넣어서 출력
inlucde 페이지
<c:choose>
<c:when test="${param.type == 'tag'}">${param.title}</c:when>
<c:otherwise><h1 class="area-tit">${param.title}</h1></c:otherwise>
</c:choose>
choose JSTL을 사용하여 분기 처리합니다.
type 으로 전달된 값을 확인하여 'tag' 텍스트인지 확인합니다. ${param.type == 'tag'}
맞으면 전달된 title을 그대로 출력합니다.
아닐 경우에는 <h1 class="area-tit">
태그로 텍스트를 출력합니다.
'Programming > Spring' 카테고리의 다른 글
[Spring] PostgreSQL에 파일 저장하고 불러오기 (0) | 2018.09.22 |
---|---|
[mybatis] The column index is out of range: 1, number of columns: 0 (0) | 2017.08.02 |
[maven] 로컬에 있는 jar 파일을 pom.xml에 추가하기 (0) | 2017.01.24 |
[Spring] 이미지 보여주기 & 파일 다운로드 (2) | 2016.10.13 |
[spring] MyBatis 구조 - Annotation 형태 (0) | 2016.04.26 |
댓글