-
If you have some module with:
```java
public class UsersManagement implements Jooby.Module {
@Override
public void configure(Env env, Config config, Binder binder) throws Throwable {
…
-
Sometimes we need to connect to multiple databases within the same application. Currently with Jdbc
module we can do like this:
```
{
use(new Jdbc("db.main"));
use(new Jdbc("db.audit"));
…
-
This exception is thrown if "mainClass" is null.
Maybe check the value earlier and throw a better exception?
[ERROR] Failed to execute goal org.jooby:jooby-maven-plugin:1.1.0:spec (default) on pro…
-
**Last updated: 1/27/2017**
I've noticed that there are a bunch of frameworks that are in our test suite, but are missing 1 or more of the 6 core tests (Plaintext, JSON, DB, Queries, Update, Fortun…
-
I am using a library(http://javalite.io/activejdbc) that requires me to run the maven goal 'process-classes' to do bytecode instrumentation before i can run the app. Is there a way to do this on ever…
-
It would be great to have the latest stable Freemarker version (2.3.26) for jooby-ftl. Using 2.3.23 now.
-
This is about skipping Jackson invocation for a tiny perf boost....
Consider this code:
```
get("/foo", (req, rsp) -> {
if (userIsAuthorized(req)) {
rsp.send(foo);
}
});
``…
-
The data source class used when using pgsql (com.impossibl.postgres.jdbc.PGDataSource) does not have a url property and instead takes separate host/port/database arguments.
When using the Jdbi modu…
-
See http://jooby.org
(I will provide the implementation)
-
Hi,
First of all many thanks toyou for making this great framework Jooby!
Following the guide and documentation I setup my first trial jooby project, and I want to use Ebean. I wrote just an entit…