
В файле «rest-openapi.yaml ” я добавил следующий код:

Код: Выделить всё
info:
description: "DemoRestBuilder REST API"
license:
name: "Apache 2.0"
url: "http://www.apache.org/licenses/LICENSE-2.0.html"
title: "DemoRestBuilder"
version: v1.0
openapi: 3.0.1
paths:
"/get-usuario":
get:
operationId: getUsuarioById
parameters:
- in: query
name: usuarioId
required: true
schema:
type: integer
format: int64
responses:
200:
description: "Success Response"
content:
application/json:
schema:
items:
$ref: "#/components/schemas/UsuarioEntidad"
application/xml:
schema:
items:
$ref: "#/components/schemas/UsuarioEntidad"
tags: ["Usuario"]
components:
schemas:
UsuarioEntidad:
properties:
usuarioId:
type: integer
format: int64
Затем обновляется градиент проекта, при этом автоматически создаются следующие пакеты:


- Какое решение можно применить к этому ?
- Что я делаю не так?
Подробнее здесь: https://stackoverflow.com/questions/790 ... iferay-7-4
Мобильная версия