2016-12-11 5 views
1

handlebars dateFormat을 작동 시키려고합니다. 현재 으로 전화하면 오류가 발생합니다. com.github.jknack.handlebars.HandlebarsException: /hbs/doc/docheader.hbs:6:12: could not find helper: 'dateFormat'Springboot 핸들과 함께 : 도우미를 찾을 수 없습니다 : 'dateFormat'

이 내 관련 Gradle을 구성입니다 : compile 'pl.allegro.tech.boot:handlebars-spring-boot-starter:0.2.14' compile 'com.github.jknack:handlebars-helpers:4.0.6', 'com.github.jknack:handlebars-jackson2:4.0.6', 'com.github.jknack:handlebars-humanize:4.0.6', 'com.github.jknack:handlebars-markdown:4.0.6' 지금까지 내가 문자열 헬퍼는 핸들-jackson2에 포함되어야 이해 : 4.0.6.

답변

1

문자열 헬퍼가 기본적으로 등록되어 있지 않습니다. 다음 코드는 작동하게했습니다.

TemplateLoader loader = new ClassPathTemplateLoader("/hbs", ".hbs"); 
this.handlebars = new Handlebars(loader); 
StringHelpers.register(this.handlebars);