Running Open Liberty 18.0.0.3 with mpOpenAPI-1.0 and some JAX-RS resources.
The Resources is working, and the http://localhost:9080/openapi/ui/ is also running, but noone of mye JAX-RS resources is displaying in the OpenAPI gui
The doc stated that it should not be neccesary with any addition annotation, but even though I tried like this:
@Slf4j
@Path(value="/")
@RequestScoped
public class DomaResource {
@GET
@Path("/")
@Produces(MediaType.APPLICATION_JSON)
@Operation(
summary = "Get All Maps",
description = "Retrieving all the available maps at the destination"
)
public MapInfo[] getAllMaps() {
..
..
Am I missing something else ?
The plain output from 'http://localhost:9080/openapi' is :
openapi: 3.0.0
info:
title: Deployed APIs
version: 1.0.0
servers:
- url: http://localhost:9080/doma
/bwa