1 개요[ | ]
- Apache FreeMarker; FreeMarker, Freemarker
- 아파치 프리마커; 프리마커
- 자바 기반 템플릿엔진
- 아파치 라이선스 2.0
- 확장자:
.ftl
[1]
2 예시[ | ]
- 입력
html
Copy
<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
Copy
<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 참고[ | ]
- ↑ 프리마커 템플릿 언어(FreeMarker Template Language)
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.