handlebars.java icon indicating copy to clipboard operation
handlebars.java copied to clipboard

Logic-less and semantic Mustache templates with Java

Results 176 handlebars.java issues
Sort by recently updated
recently updated
newest added

In continuance to issue #655 , there is still a scenario in which it can be reproduced in my production application. The scenario is quite complex, but it is real...

Hi, with Java 11, the Nashorn script engine was deprecated and marked for removal (see [JEP 335](https://openjdk.java.net/jeps/335)). * Do you think, this will affect handlebars.java? Are there changes planned related...

I encountered this issue while using Handlebars.java with [WireMock](https://github.com/tomakehurst/wiremock) but have also reproduced it using the Handlebars.java server. Below is the example to reproduce this. **newlines.hbs:** ``` {{replace (content) '\n'...

Hello, I'm using `ClassPathTemplateLoader` to load my template. My template are named for instance "template.json" but the path that the loader is attempted to resolve is "template.json.hbs"... Here's an example...

The following (arguably contrived) example fails on handlebars.java 4.1.2 but passes on http://tryhandlebarsjs.com/: ``` {{#*inline "hello"}} Hello {{/inline}} {{#*inline "render"}} {{> @partial-block}} {{/inline}} {{#>render}} {{#*inline "inlineTemplate"}} {{#>hello}}{{/hello}} {{/inline}} {{>inlineTemplate}} {{/render}}...

I'm trying to upgrade from 1.3.0 to 4.1.2. I used MissingValueResolver which is now removed; HelperMissing is suggested as a replacement, but it covers much more cases than MissingValueResolver, and...

It's like #352, but this time about the release archive. Specifically, I downloaded the archive from https://github.com/jknack/handlebars.java/archive/v4.1.2.tar.gz but failed to build it (by invoking `mvn package`) because of the missing...

I use Wiremock which use your library for templating. I am encountering a problem of performance when I active the reponse templating especially when the response content is important (...

The cache system for templates, as it's implemented now, is subtly broken with certain use cases, when a cache object is shared between different `Handlebars` objects. Specifically, a cache can...

Hi.. actually I am using wiremock to mock my data. currently I am mocking one API which has the body request like this: `api_key=fcda9e1954607&AIRWAYBILLS=3200000019094&username=TEST` I want to fetch the AIRWYBILLS...