Adam Gent
Adam Gent
More notes for myself: The trickiest part to i18n for JStachio is parameterization of the i18n message. I do have an example doing mustache.java style: https://github.com/jstachio/jstachio/tree/main/test/examples/src/main/java/io/jstach/examples/i18n But what I'm looking...
@sviperll @dsyer Sorry guys for the ping but I wanted to run something by you to solve the i18n problem. I'm thinking of adding a compiler extension point which may...
Yes Dave and I were talking about a similar idea over here https://github.com/jstachio/jstachio/discussions/343#discussioncomment-9155819 My concern is JMustache compat and Locale formatting of locale specific objects like currency and date. I...
The issue in my mind is that we are commandeering a syntax not used for formatting but templating. The difference is subtle but there is difference. My fear is that...
> From what @agentgt has written, I think he has different assumptions in mind and he assumes more dynamic nature of this feature. Yes. This is based off experience with...
See also #200 for Gradle specific sort of related but not entirely hot reload.
I had originally claimed the annotations but errorprone says that is bad. I may need a flag. I’ll get this fixed for very soon.
Like @dsyer I cobbled my own hack for reload as well using [fswatch](https://emcrisostomo.github.io/fswatch/) and [mvnd](https://github.com/apache/maven-mvnd). I have a run script: https://github.com/agentgt/petclinic/blob/main/petclinic/run.sh 1. Remove all class (`.class`) files that are `JStache`...
https://errorprone.info/bugpattern/DoNotClaimAnnotations I will check with the errorprone team as well. I swore I have `-Xlint:all -Werror` in my other projects but maybe I'm mistaken.
> maybe it's a JDT issue, so IntelliJ users never see it, but it's a huge problem for the rest of us. It is not a JDT issue as I...