fdk-java icon indicating copy to clipboard operation
fdk-java copied to clipboard

Java API and runtime for fn.

Results 56 fdk-java issues
Sort by recently updated
recently updated
newest added

I want to be able to use JSON-B as an alternative to Jackson for JSON marshalling Is one or other included by default? Can i switch between marshalling by adding...

In the documented usage of Java FDK, the `api` module is added by the user to their `pom.xml`. The `runtime` module is part of the base image. This should be...

Whenever I want to write a function which depends on a jar that isn't in a public maven repo it's a pain. I end up creating a custom Dockerfile with...

Hi, i found that there always be a image named none(tag is also named none) when i deploy a java project successfully, is this normal?

Try to get this ready in time for SpringOne. - [x] This needs to be a separate jar - [x] Need to be able to supply a FunctionInvoker from a...

Fn Build for FDK currently only works with Maven - intention is to support gradle one way or another too. * Boilerplate * Build (Code & Container)

Considering the following function class ``` public class PojoFunction { public Object greet(String name) { if (name == null || name.isEmpty()) { name = "World"; } return new Greeting(name); }...

I had a `func.yaml` with the follwoing content: name: mail version: 0.0.3 runtime: java cmd: com.espirit.fsi.example.ApplicationViaMail.java::handleRequest build_image: fnproject/fn-java-fdk-build:jdk9-1.0.56 run_image: fnproject/fn-java-fdk:jdk9-1.0.56 format: http an `fn deploy`, as well as `fn test`...

Currently all function classes are required to have a method which is designated as "the function". This isn't necessary for all invokers, eg those that can determine the method themselves...