Skip to content

jooby-apt: add option to remove mvcMethod and returnType from route #3492

@jknack

Description

@jknack

Today:

{
      /** See {@link Controller1292#response() */
      app.get("/", this::response)
        .setReturnType(String.class)
        .setMvcMethod(Controller1292.class.getMethod("response"));
}

With: -Ajooby.mvcMethod=false and -Ajooby.returnType=false:

{
      /** See {@link Controller1292#response() */
      app.get("/", this::response);
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions