-
Hi,
Got a 500 error in the last two build. It was working perfectly in the past. Build is available at: https://travis-ci.org/jooby-project/jooby
Appreciate any help.
Thanks
-
-
Hi,
Handlebars 3.0.3 is out. Will the latest version of Handlebars receive any love? =)
-Saad
-
next release will support javascript apps via nashorn engine:
``` javascript
var app = jooby();
app.get('/', function () 'Hey jooby!');
```
or via function (preferred):
``` javascript
jooby(funct…
-
``` java
{
use(new Ebeanby(P));
}
```
see http://www.avaje.org/
-
Hello!
Recently I that discovered method [URLTemplateSource.lastModified](https://github.com/jknack/handlebars.java/blob/0b1b12303cc74f3583433b3c15824164c74ced6f/handlebars/src/main/java/com/github/j…
-
[Jongo](http://jongo.org/) is a simple ORM framework that I've been having a lot of success using in a lot of projects. However setting up singletons for using it certainly is a pain.
Currently in Jo…
-
Hello, I've been noticing that the hotreload feature doesn't seem to work.
How is it suppose to work? Auto detect .java files notifications and recompile?
Thanks
-
It's a common practice to store static assets such as minified assets and compressed images to a CDN. But it's a pain to change all your local references in your HTML's to point to your CDN. It would …
-
``` java
{
use("*", new Csrf());
}
```
Every request will have access to `csrf` token. `POST`, `PUT`, `PATCH` and `DELETE` will be checked by the `Csrf` filter.