Skip to content

Instantly share code, notes, and snippets.

@jklingsporn
Last active August 30, 2017 09:50
Show Gist options
  • Save jklingsporn/3ac0b9740ddf7e25d35c8c89cf097fca to your computer and use it in GitHub Desktop.
Save jklingsporn/3ac0b9740ddf7e25d35c8c89cf097fca to your computer and use it in GitHub Desktop.
Pojo to json
public class SomeJsonTest {
public void getJsonFromPojo(){
SomethingDao somethingDao = new SomethingDao();
//setConfiguration/ setVertx left out
CompletableFuture<JsonObject> jsonFuture = somethingDao
.fetchOneBySomeidAsync(1)
.thenApply(ISomething::toJson);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment