Back-end/Spring-핵심& webMVC

Jsp- jstl

prden 2023. 1. 1. 10:32

1. <c:out value="" />

<%@ taglib prefix="c"      uri="http://java.sun.com/jsp/jstl/core" %>

 

<c:out value="${result.id}" escapeXml="true or false" default="출력값" />

value는 필수적으로 입력해야 하는 속성으로 화면에 출력할 값 적는다.  escaperXml 속성은 기본적으로 true

https://lifejusik1004.tistory.com/entry/JSP-JSTL-cout-%ED%83%9C%EA%B7%B8-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0

 

[JSP] JSTL c:out 태그 사용하기

c:out 태그란? c:out 태그는 자바에서의 System.out.println 메서드, JSP와 비슷한 역할을 가지고 있습니다. 어떤 값을 입력받던지 간에 콘솔이 아닌 화면에 문자열로 바꾸어서 보여주는 역할입니다. 얼핏

lifejusik1004.tistory.com

2. <c:url value='/updateSampleView.do'/>

document.listForm.action = "<c:url value='/updateSampleView.do'/>";

   function fn_egov_select(id) {
        	document.listForm.selectedId.value = id;
           	document.listForm.action = "<c:url value='/updateSampleView.do'/>";
           	document.listForm.submit();
        }

3. <c:if test="${registerFlag == 'create'}"<spring:message code="" /></c:if>

 

4. <c:choose>, <c:when>, <c:otherwise>

<div class="pull-left photoOutline">
   <c:choose>
       <c:when test="${replylist.photo==null}">
         <a href="" class="img-circle">
            <i class="glyphicon glyphicon-user noPhoto"></i>
         </a>
       </c:when>
       <c:otherwise>
          <img class="img-circle" src="fileDownload?downname=<c:out value="${replylist.photo}"/>" title="<c:out value="${replylist.rewriter}"/>"/>
       </c:otherwise>
   </c:choose>
</div> 

5. <form: select />

<%@ taglib prefix="form"   uri="http://www.springframework.org/tags/form" %>

<label for="searchCondition" style="visibility:hidden;"><spring:message code="search.choose" /></label>
    <form:select path="searchCondition" cssClass="use">
        <form:option value="1" label="Name" />
        <form:option value="0" label="ID" />
    </form:select>

6. <form: form />

 

https://bbiyakbbiyak.tistory.com/1

 

Spring form:form 태그 설명

폼 태그(form:form) : spring버전 2.0부터 jsp와 웹MVC를 사용할 때, 폼 요소를 좀 더 편리하게 다룰 수 있도록 데이터바인딩과 관련된 광범위한 태그를 제공 # form 커스텀 태그 사용먼저 jsp화면 상단에

bbiyakbbiyak.tistory.com

                            <c:if test="${registerFlag == 'create'}"><spring:message code="button.create" /></c:if>