-
Currently my workaround
``` java
void useExtra(Jooby jooby) {
onStartFake.addAll(Reflect.on(jooby).get("onStart"));
onStopFake.addAll(Reflect.on(jooby).get("onStop"));…
-
Adding a HelperSource through springmvc seems to be broken (or I'm just not doing it right). The relevant part of my spring `webmvc-config.xml` is
``` xml
…
-
Hi, first of all: thank you for the effort and this awesome framework - I hope I will stay with it a bit longer, looks promising!
Today I was struggling with Jade templates because I was getting `HTT…
-
[Caffeine](https://github.com/ben-manes/caffeine) is a Java 8 rewrite of Guava's cache. It includes a few new features (e.g. async loading), higher performance, and an improved eviction policy. There …
-
FluffOS should build/run on OSX with packages installed with homebrew with ease.
-
I tried to use Undertow Server with 1.0-RC4, I get this exception, seems that ServiceLocator can't find XNIO implementation even if it's included in the classpath of POM (runtime scope).
java.lang.Il…
-
When using the [raw-helper](http://handlebarsjs.com/block_helpers.html#raw-blocks) in java inside of a conditional statement results in an exception. The raw helper works fine when not nested in any f…
lagrz updated
8 years ago
-
Hi,
pac4j v1.9.1 is out and Jooby should upgrade to use it.
The source code has been cleaned (-15% in size), dependencies (Java 8 also) have been upgraded, multi-profiles are supported and extension…
-
Given the following server:
``` Java
import org.jooby.*;
public class Main extends Jooby {
{
get("/test", req -> req.param("foo").toOptional().toString() + "\n");
}
public static void mai…
-
Hi,
First of all, I must say - great project!
To my question - could it be that the way that Handlebars.java treats inline partials that are defined from within a certain block is inconsistent with …