Joe Lauer
Joe Lauer
It's a common request for IDE support. I won't be able to invest the time in building one anytime in the near future, so I'm hoping someone in the opensource...
@tipsy @bjornbak We're trying to gauge interest in an IDE plugin for rocker templates (that would include code completion). If interested please take a few seconds to fill out this...
You've submitted a couple classloader PRs, but perhaps it'd be good to try and create unit tests to verify all this. Running under maven, tomcat, gradle, etc. introduce all sorts...
Unit tests for runtime classes are all on runtime/src/test/java. Any changes affecting a classloader for those classes in that module would go in there. Unit/integration tests that target Java 6+...
Hi @ssijak - when rocker's hot reloading feature is turned off (as it should be in prod) - the only special classloader used is to load up the byte arrays...
That's not really a goal of Rocker. Rocker is designed to be efficient, compiler-checked, and lightning fast. A Rocker template is compile to a normal Java class, thus the template...
It's hard to 100% classify it as a compiler vs. transpiler. I'd say its currently more of a transpiler than a compiler. It parses templates into a working AST/model, generates...
@ALEXAME - happy to help or take a stab at it when time permits. Just like our ninja framework and jooby integrations, I'm guessing an integration + example is what...
@albert-kam Another suggestion I had thought of as well when originally working on Rocker. I ended up not doing this since Java doesn't do it. However, I certainly could be...
Hey Ned, That's a great question. Rocker does support named parameters in a builder-style syntax. If you look at the generated .java files, you'll notice every argument has a corresponding...