Hi everyone,
I've been trying to get mustache templates working recently, and I'm running into this error at runtime:
Caused by: ! com.github.mustachejava.MustacheException: Template /com/example/helloworld/views/post.mustache not found
Of course, I do have the the post.mustache file, and its location. The PostView.java file that references post.mustache is at /com/example/helloworld/views/PostView.java The only thing I can think of is that /com/example/helloworld/views/post.mustache is still a relative path, whereas the fully qualified location of my template file is src/main/java/com/example/helloworld/views/post.mustache
Anyone have mustache templates working successfully? Maybe I am missing something obvious here.
thanks,
Veljko