Freemarker 사용 입문
1 pom 의존
freemarker
freemarker
2.3.8
compile
2 공구 류
public class FreemarkerUtil {
private static final Log logger = LogFactory.getLog(FreemarkerUtil.class.getName());
public static void generateContent(String templateFile, Map root, File destiFile){
try {
Configuration cfg = new Configuration();
cfg.setTemplateLoader(new ClassTemplateLoader(FreemarkerUtil.class, Constants.SLASH));
cfg.setObjectWrapper(new DefaultObjectWrapper());
Template temp = cfg.getTemplate(templateFile);
FileOutputStream outStream = new FileOutputStream(destiFile);
Writer out = new OutputStreamWriter(outStream);
temp.process(root, out);
out.flush();
} catch (Exception e) {
logger.error("", e);
}
}
}
3.테스트 클래스
public class freemarkerTest {
@Test
public void testRender() {
Map root = new HashMap();
root.put("name", "wilson");
FreemarkerUtil.generateContent("test.ftl", root, new File("generatedFile"));
}
}
test.ftl
hello ${name}
출력 파일
[quote]hello wilson[/quote]
4.freemarker eclipse 하 이 라이트 플러그 인
http://www.jboss.org/tools/download/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
자바를 잡아버려 (1)나의 생각을 적고 복습을 해버릴 것 이다 책을 펼치자 마자 나오는 설명인데 그 안의 내용을 실행하게 된다 라고 설명을 해준다 아래 소스코드와 실행 결과로 위에 설명을 보충해준다 사칙연산과 나머지를 계산하는 것 비교연...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.