Skip to content

Latest commit

 

History

History
90 lines (81 loc) · 2.58 KB

File metadata and controls

90 lines (81 loc) · 2.58 KB

Spring Boot Examples by HowToDoInJava.com

This repository hosts the projects and their source codes written for various tutorials written in howtodoinjava.com.

Development Environment

  • Spring Boot 2.1.8.RELEASE
  • Maven 4
  • JDK 8
  • Eclipse Photon

To import this project into Eclipse IDE

If you want to import these project into your local eclipse setup -

  1. Download the project as zip file into your computer
  2. Unzip the project at your desired location
  3. Import the project into Eclipse as existing maven project
File > Import... > Maven > Existing Maven Projects
  1. Done

openapi: 3.0.3 info: title: Motor de Flujos - API version: "1.0.0" description: | Especificación de APIs del Motor de Flujos para gestión de catálogos, flujos y trámites. servers:

  • url: https://api.asea.gob.mx/motor-flujos paths: /catalogos/dias-festivos: get: summary: Obtiene listado paginado de días festivos tags: - Catálogos parameters: - name: token in: header required: true schema: type: string description: Token JWT de autenticación - name: pagina in: query required: false schema: type: integer default: 1 description: Número de página a consultar responses: '200': description: Lista de días festivos content: application/json: schema: type: object properties: totalRegistros: type: integer example: 2 diasFestivos: type: array items: type: object properties: idDiaFestivo: type: integer example: 1 nombre: type: string example: Año Nuevo fechaInicio: type: string format: date example: 2025-01-01 fechaFin: type: string format: date example: 2025-01-01 token: type: string example: eyJhbGciOiJIUzI1NiIsInR... '401': description: Token inválido o expirado '500': description: Error interno del servidor