Skip to content

acmerev/SpringExamples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Initial Commit

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Java 95.8%
  • HTML 3.4%
  • Other 0.8%