Skip to content

Backend para gestión de matrículas usando: Spring Boot 3, Spring Security, JWT y PostgreSQL como motor de base de datos. ( Evaluación final curso Java 17 Backend - Mitocode)

Notifications You must be signed in to change notification settings

cbcballestas/gestion-matriculas-backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gestión matrículas BACKEND

Backend para gestión de matrículas usando: Spring Boot 3, Spring Security, JWT y PostgreSQL como motor de base de datos.

Requirements

You will need to set up your database (or create your own) with the following configuration

spring:
  datasource:
    url: jdbc:postgresql://localhost/db_evaluacion_final
    username: postgres
    password: 
    driver-class-name: org.postgresql.Driver

  jpa:
    show-sql: false
    hibernate:
      ddl-auto: update
    properties:
      hibernate:
        format_sql: true
        dialect: org.hibernate.dialect.PostgreSQLDialect
  mvc:
    throw-exception-if-no-handler-found: true
    static-path-pattern: /templates

jwt:
  secret: jwt_secret

Run application

There are several ways to run a Spring Boot application in your local machine. The most common way is executing main method in com.cballestas.evaluacionfinal.EvaluacionFinalApplication class from your IDE

Alternative you can use Spring Boot Maven plugin, just running:

mvn spring-boot:run

Endpoints

About

Backend para gestión de matrículas usando: Spring Boot 3, Spring Security, JWT y PostgreSQL como motor de base de datos. ( Evaluación final curso Java 17 Backend - Mitocode)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages