Dave Syer
Dave Syer
I don't know anything about React. I cloned the repo and ran `mvn install` in the `basic` sample, then imported it into STS. Ran the main method and went to...
I think the `mvnw.*` scripts were old and mouldy. I replaced them with fresh downloads from start.spring.io. Maybe it works now (on the command line at least)?
I'm not sure I follow yet - isn't the subscriber Spring MVC, which you said would propagate the context? By "works" you mean "prints out request attributes", I guess, but...
Also doesn't work with the vagrant package that comes with Ubuntu 16.04 (version 1.8.1): ``` $ vagrant plugin install --verbose vagrant-aws Installing the 'vagrant-aws' plugin. This can take a few...
So the paragraph I quoted was detached from its example? Or maybe just didn't refer to its example? It's still confusing (for me anyway). Aside: I kind of hate the...
So the mustache.java style example uses newlines as a parameter separator? And it doesn't evaluate mustache expressions in the parameter values? Kind of icky with the newlines, and no expressions...
I like Victor's samples, and I would be prepared to sacrifice number and date formats (JStachio already has defaults for that doesn't it?). But I do like Adam's suggestion that...
I did some experiments with `inotify`. This works (running in the background at the same time as app with devtools): ``` $ while inotifywait src/main/resources/templates -e close_write; do sleep 1;...
Is there any way to do the byte code processing without using APT? APT just never works for me consistently. It sometimes works, but then I get stuck with the...
I think you can fix that sample project by putting the `@JStacheFormatterTypes` on the main `PetClinicApplication`. Or maybe it's just in a happy phase and will bite me later. I...