Adam Gent
Adam Gent
Yeah it’s a bug with incremental compiling with IntelliJ. I think Gradle had something similar. You see javac is not an incremental compiler so most build systems and IDE write...
@jvissers and @george-grec I cannot seem to reproduce this with the latest Intellij. I tried turning on build automatically. Ironically the only way I could get a similar error is...
@jvissers What I can do is make an annotation processing flag so that it ignores duplicate files. However you might want that flag disabled in your CI but it should...
@Sparky983 I guess the problem with that is I see more questions like #492 being filed. Which I'm all for people asking questions but I and I assume @ascopes subscribe...
It is confusing as hell because of how lambdas work per the Mustache spec. You need to do ```hbs {{#name}}{{#capitalize}}{{/capitalize}}{{/name}} ``` Or the shorter notation ```hbs {{#name.capitalize}}{{/name.capitalize}} ``` There are...
I’ll also try ChatGPT later to see what doc might it like better for training later. Lambda next version is going to be heavily documented anyway. I am surprised it...
So currently we do not publish to maven central for snapshots. We could certainly start doing that if there is interest but I find most just checkout the code and...
@Luuzzi just out of curiosity why are you not terminating the SSL with a proxy or load balancer? Are you using a TCP load balancer instead of HTTP/s (as I...
> In 2.x (if I remember correctly) there was a request to support multiple applications on same JVM. That means a single server listening on multiples ports. Probably that could...
> I understand that this is a non-trivial task because other network frameworks likely do not have such a simple and convenient SniHandler as Netty. Yes that is correct. Similarly...