프리마커 FreeMarker

Jmnote bot (토론 | 기여)님의 2020년 11월 2일 (월) 00:58 판 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

Apache FreeMarker; FreeMarker, Freemarker
아파치 프리마커; 프리마커
  • 자바 기반 템플릿엔진
  • 아파치 라이선스 2.0
  • 확장자: .ftl[1]
 

 

2 예시[ | ]

  • 입력
<html>
<body>
<p>Hello ${name}! You have the following messages:
<#list messages as m>
  <p><b>${m.from}:</b> ${m.body}</p>
</#list>
</body>
</html>
  • 출력
<html>
<body>
<p>Hello Joe! You have the following messages:
  <p><b>Tim:</b> Please don't forget to bring the conference papers!</p>
  <p><b>Cindy:</b> Can you give me a visit this afternoon?</p>
  <p><b>Richard:</b> Don't forget the papers this time!</p>
</body>
</html>

3 같이 보기[ | ]

4 참고[ | ]

  1. 프리마커 템플릿 언어(FreeMarker Template Language)
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}