From 7070f0072f19fc3e05dcda5bb15a64cf61461db9 Mon Sep 17 00:00:00 2001 From: programador89 Date: Fri, 31 Jan 2025 15:41:07 -0600 Subject: [PATCH 1/3] Commit inicial para el crud de personas --- .gitignore | 37 +++ build.gradle | 34 +++ gradlew | 252 ++++++++++++++++++ gradlew.bat | 94 +++++++ settings.gradle | 1 + .../personal/PersonalApplication.java | 11 + .../personal/domain/dto/ApiResponse.java | 39 +++ .../personal/domain/dto/PersonDTO.java | 61 +++++ .../domain/repository/PersonRepository.java | 7 + .../domain/service/PersonService.java | 13 + .../domain/service/PersonServiceImpl.java | 84 ++++++ .../exception/CreatePersonException.java | 7 + .../exception/GlobalExceptionHandler.java | 39 +++ .../exception/NoDataFoundException.java | 7 + .../exception/PersonNotFoundException.java | 7 + .../personal/persistance/entitys/Person.java | 70 +++++ .../web/controller/PersonController.java | 79 ++++++ 17 files changed, 842 insertions(+) create mode 100644 .gitignore create mode 100644 build.gradle create mode 100644 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle create mode 100644 src/main/java/com/stefanini/personal/PersonalApplication.java create mode 100644 src/main/java/com/stefanini/personal/domain/dto/ApiResponse.java create mode 100644 src/main/java/com/stefanini/personal/domain/dto/PersonDTO.java create mode 100644 src/main/java/com/stefanini/personal/domain/repository/PersonRepository.java create mode 100644 src/main/java/com/stefanini/personal/domain/service/PersonService.java create mode 100644 src/main/java/com/stefanini/personal/domain/service/PersonServiceImpl.java create mode 100644 src/main/java/com/stefanini/personal/exception/CreatePersonException.java create mode 100644 src/main/java/com/stefanini/personal/exception/GlobalExceptionHandler.java create mode 100644 src/main/java/com/stefanini/personal/exception/NoDataFoundException.java create mode 100644 src/main/java/com/stefanini/personal/exception/PersonNotFoundException.java create mode 100644 src/main/java/com/stefanini/personal/persistance/entitys/Person.java create mode 100644 src/main/java/com/stefanini/personal/web/controller/PersonController.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c2065bc --- /dev/null +++ b/.gitignore @@ -0,0 +1,37 @@ +HELP.md +.gradle +build/ +!gradle/wrapper/gradle-wrapper.jar +!**/src/main/**/build/ +!**/src/test/**/build/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +bin/ +!**/src/main/**/bin/ +!**/src/test/**/bin/ + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr +out/ +!**/src/main/**/out/ +!**/src/test/**/out/ + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ + +### VS Code ### +.vscode/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..f702d5d --- /dev/null +++ b/build.gradle @@ -0,0 +1,34 @@ +plugins { + id 'java' + id 'org.springframework.boot' version '3.1.0' + id 'io.spring.dependency-management' version '1.1.0' +} + +group = 'com.stefanini' +version = '0.0.1-SNAPSHOT' + +java { + toolchain { + languageVersion = JavaLanguageVersion.of(17) + } +} + +repositories { + mavenCentral() +} + +dependencies { + // Spring Boot Starters + implementation 'org.springframework.boot:spring-boot-starter-data-jpa' + implementation 'org.springframework.boot:spring-boot-starter-web' + + // MySQL Connector para Java 17 + implementation 'mysql:mysql-connector-java:8.0.33' + + // Otras dependencias + testImplementation 'org.springframework.boot:spring-boot-starter-test' +} + +tasks.named('test') { + useJUnitPlatform() +} \ No newline at end of file diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..f5feea6 --- /dev/null +++ b/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..9d21a21 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..cbc9f8d --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = 'personal' diff --git a/src/main/java/com/stefanini/personal/PersonalApplication.java b/src/main/java/com/stefanini/personal/PersonalApplication.java new file mode 100644 index 0000000..e275527 --- /dev/null +++ b/src/main/java/com/stefanini/personal/PersonalApplication.java @@ -0,0 +1,11 @@ +package com.stefanini.personal; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class PersonalApplication { + public static void main(String[] args) { + SpringApplication.run(PersonalApplication.class, args); + } +} diff --git a/src/main/java/com/stefanini/personal/domain/dto/ApiResponse.java b/src/main/java/com/stefanini/personal/domain/dto/ApiResponse.java new file mode 100644 index 0000000..0aac711 --- /dev/null +++ b/src/main/java/com/stefanini/personal/domain/dto/ApiResponse.java @@ -0,0 +1,39 @@ +package com.stefanini.personal.domain.dto; + +public class ApiResponse { + private boolean status; + private String msg; + private T data; + + // Constructor + public ApiResponse(boolean status, String msg, T data) { + this.status = status; + this.msg = msg; + this.data = data; + } + + // Getters y setters + public boolean isStatus() { + return status; + } + + public void setStatus(boolean status) { + this.status = status; + } + + public String getMsg() { + return msg; + } + + public void setMsg(String msg) { + this.msg = msg; + } + + public T getData() { + return data; + } + + public void setData(T data) { + this.data = data; + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/domain/dto/PersonDTO.java b/src/main/java/com/stefanini/personal/domain/dto/PersonDTO.java new file mode 100644 index 0000000..7640398 --- /dev/null +++ b/src/main/java/com/stefanini/personal/domain/dto/PersonDTO.java @@ -0,0 +1,61 @@ +package com.stefanini.personal.domain.dto; + +import java.math.BigDecimal; +import java.time.LocalDate; + +public class PersonDTO { + private Integer id; + private String nombre; + private String apellido; + private LocalDate fechaNacimiento; + private String puesto; + private BigDecimal sueldo; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNombre() { + return nombre; + } + + public void setNombre(String nombre) { + this.nombre = nombre; + } + + public String getApellido() { + return apellido; + } + + public void setApellido(String apellido) { + this.apellido = apellido; + } + + public LocalDate getFechaNacimiento() { + return fechaNacimiento; + } + + public void setFechaNacimiento(LocalDate fechaNacimiento) { + this.fechaNacimiento = fechaNacimiento; + } + + public String getPuesto() { + return puesto; + } + + public void setPuesto(String puesto) { + this.puesto = puesto; + } + + public BigDecimal getSueldo() { + return sueldo; + } + + public void setSueldo(BigDecimal sueldo) { + this.sueldo = sueldo; + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/domain/repository/PersonRepository.java b/src/main/java/com/stefanini/personal/domain/repository/PersonRepository.java new file mode 100644 index 0000000..0f58b6f --- /dev/null +++ b/src/main/java/com/stefanini/personal/domain/repository/PersonRepository.java @@ -0,0 +1,7 @@ +package com.stefanini.personal.domain.repository; + +import com.stefanini.personal.persistance.entitys.Person; +import org.springframework.data.jpa.repository.JpaRepository; + +public interface PersonRepository extends JpaRepository { +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/domain/service/PersonService.java b/src/main/java/com/stefanini/personal/domain/service/PersonService.java new file mode 100644 index 0000000..d332abb --- /dev/null +++ b/src/main/java/com/stefanini/personal/domain/service/PersonService.java @@ -0,0 +1,13 @@ +package com.stefanini.personal.domain.service; + +import com.stefanini.personal.domain.dto.PersonDTO; + +import java.util.List; + +public interface PersonService { + PersonDTO createPerson(PersonDTO personDTO); + PersonDTO getPersonById(Integer id); + List getAllPersons(); + PersonDTO updatePerson(Integer id, PersonDTO personDTO); + void deletePerson(Integer id); +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/domain/service/PersonServiceImpl.java b/src/main/java/com/stefanini/personal/domain/service/PersonServiceImpl.java new file mode 100644 index 0000000..3f69de9 --- /dev/null +++ b/src/main/java/com/stefanini/personal/domain/service/PersonServiceImpl.java @@ -0,0 +1,84 @@ +package com.stefanini.personal.domain.service; + +import com.stefanini.personal.domain.dto.PersonDTO; +import com.stefanini.personal.exception.CreatePersonException; +import com.stefanini.personal.exception.NoDataFoundException; +import com.stefanini.personal.exception.PersonNotFoundException; +import com.stefanini.personal.persistance.entitys.Person; +import com.stefanini.personal.domain.repository.PersonRepository; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; +import java.util.stream.Collectors; + +@Service +public class PersonServiceImpl implements PersonService { + + @Autowired + private PersonRepository personRepository; + + + @Override + public PersonDTO createPerson(PersonDTO personDTO) { + try { + Person person = new Person(); + person.setNombre(personDTO.getNombre()); + person.setApellido(personDTO.getApellido()); + person.setFechaNacimiento(personDTO.getFechaNacimiento()); + person.setPuesto(personDTO.getPuesto()); + person.setSueldo(personDTO.getSueldo()); + + Person savedPerson = personRepository.save(person); + return mapToDTO(savedPerson); + } catch (Exception ex) { + throw new CreatePersonException("Error al crear la persona: " + ex.getMessage()); + } + } + + @Override + public PersonDTO getPersonById(Integer id) { + Person person = personRepository.findById(id).orElseThrow(() -> new PersonNotFoundException("Persona no encontrada con ID: " + id)); + return mapToDTO(person); + } + @Override + public List getAllPersons() { + List persons = personRepository.findAll(); + if (persons.isEmpty()) { + throw new NoDataFoundException("No se encontraron personas"); + } + return persons.stream() + .map(this::mapToDTO) + .collect(Collectors.toList()); + } + + @Override + public PersonDTO updatePerson(Integer id, PersonDTO personDTO) { + Person person = personRepository.findById(id).orElseThrow(() -> new RuntimeException("Empleado no encontrado")); + person.setNombre(personDTO.getNombre()); + person.setApellido(personDTO.getApellido()); + person.setFechaNacimiento(personDTO.getFechaNacimiento()); + person.setPuesto(personDTO.getPuesto()); + person.setSueldo(personDTO.getSueldo()); + Person updatedPerson = personRepository.save(person); + return mapToDTO(updatedPerson); + } + + @Override + public void deletePerson(Integer id) { + Person person = personRepository.findById(id) + .orElseThrow(() -> new PersonNotFoundException("Persona no encontrada con ID: " + id)); + personRepository.delete(person); + } + + private PersonDTO mapToDTO(Person person) { + PersonDTO personDTO = new PersonDTO(); + personDTO.setId(person.getId()); + personDTO.setNombre(person.getNombre()); + personDTO.setApellido(person.getApellido()); + personDTO.setFechaNacimiento(person.getFechaNacimiento()); + personDTO.setPuesto(person.getPuesto()); + personDTO.setSueldo(person.getSueldo()); + return personDTO; + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/exception/CreatePersonException.java b/src/main/java/com/stefanini/personal/exception/CreatePersonException.java new file mode 100644 index 0000000..b04c7c3 --- /dev/null +++ b/src/main/java/com/stefanini/personal/exception/CreatePersonException.java @@ -0,0 +1,7 @@ +package com.stefanini.personal.exception; + +public class CreatePersonException extends RuntimeException { + public CreatePersonException(String message) { + super(message); + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/exception/GlobalExceptionHandler.java b/src/main/java/com/stefanini/personal/exception/GlobalExceptionHandler.java new file mode 100644 index 0000000..01d900c --- /dev/null +++ b/src/main/java/com/stefanini/personal/exception/GlobalExceptionHandler.java @@ -0,0 +1,39 @@ +package com.stefanini.personal.exception; + +import com.stefanini.personal.domain.dto.ApiResponse; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.bind.annotation.ExceptionHandler; +@ControllerAdvice +public class GlobalExceptionHandler { + + @ExceptionHandler(PersonNotFoundException.class) + public ResponseEntity> handlePersonNotFoundException(PersonNotFoundException ex) { + System.out.println("Capturando PersonNotFoundException: " + ex.getMessage()); + ApiResponse response = new ApiResponse<>(false, ex.getMessage(), null); + return new ResponseEntity<>(response, HttpStatus.NOT_FOUND); + } + + @ExceptionHandler(NoDataFoundException.class) + public ResponseEntity> handleNoDataFoundException(NoDataFoundException ex) { + System.out.println("Capturando NoDataFoundException: " + ex.getMessage()); + ApiResponse response = new ApiResponse<>(false, ex.getMessage(), null); + return new ResponseEntity<>(response, HttpStatus.NOT_FOUND); + } + + @ExceptionHandler(CreatePersonException.class) + public ResponseEntity> handleCreatePersonException(CreatePersonException ex) { + System.out.println("Capturando CreatePersonException: " + ex.getMessage()); + ApiResponse response = new ApiResponse<>(false, ex.getMessage(), null); + return new ResponseEntity<>(response, HttpStatus.BAD_REQUEST); + } + + @ExceptionHandler(Exception.class) + public ResponseEntity> handleGlobalException(Exception ex) { + System.out.println("Capturando excepción genérica: " + ex.getMessage()); + ex.printStackTrace(); // Imprime el stack trace para más detalles + ApiResponse response = new ApiResponse<>(false, "Ocurrió un error en el servidor", null); + return new ResponseEntity<>(response, HttpStatus.INTERNAL_SERVER_ERROR); + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/exception/NoDataFoundException.java b/src/main/java/com/stefanini/personal/exception/NoDataFoundException.java new file mode 100644 index 0000000..4da00e8 --- /dev/null +++ b/src/main/java/com/stefanini/personal/exception/NoDataFoundException.java @@ -0,0 +1,7 @@ +package com.stefanini.personal.exception; + +public class NoDataFoundException extends RuntimeException { + public NoDataFoundException(String message) { + super(message); + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/exception/PersonNotFoundException.java b/src/main/java/com/stefanini/personal/exception/PersonNotFoundException.java new file mode 100644 index 0000000..f04f56e --- /dev/null +++ b/src/main/java/com/stefanini/personal/exception/PersonNotFoundException.java @@ -0,0 +1,7 @@ +package com.stefanini.personal.exception; + +public class PersonNotFoundException extends RuntimeException { + public PersonNotFoundException(String message) { + super(message); + } +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/persistance/entitys/Person.java b/src/main/java/com/stefanini/personal/persistance/entitys/Person.java new file mode 100644 index 0000000..4bcbd76 --- /dev/null +++ b/src/main/java/com/stefanini/personal/persistance/entitys/Person.java @@ -0,0 +1,70 @@ +package com.stefanini.personal.persistance.entitys; + +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import jakarta.persistence.GeneratedValue; +import jakarta.persistence.GenerationType; +import jakarta.persistence.Column; +import java.math.BigDecimal; +import java.time.LocalDate; + +@Entity +public class Person { + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @Column(name = "id", nullable = false) + private Integer id; + private String nombre; + private String apellido; + private LocalDate fechaNacimiento; + private String puesto; + private BigDecimal sueldo; + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNombre() { + return nombre; + } + + public void setNombre(String nombre) { + this.nombre = nombre; + } + + public String getApellido() { + return apellido; + } + + public void setApellido(String apellido) { + this.apellido = apellido; + } + + public LocalDate getFechaNacimiento() { + return fechaNacimiento; + } + + public void setFechaNacimiento(LocalDate fechaNacimiento) { + this.fechaNacimiento = fechaNacimiento; + } + + public String getPuesto() { + return puesto; + } + + public void setPuesto(String puesto) { + this.puesto = puesto; + } + + public BigDecimal getSueldo() { + return sueldo; + } + + public void setSueldo(BigDecimal sueldo) { + this.sueldo = sueldo; + } + +} \ No newline at end of file diff --git a/src/main/java/com/stefanini/personal/web/controller/PersonController.java b/src/main/java/com/stefanini/personal/web/controller/PersonController.java new file mode 100644 index 0000000..6bf4bca --- /dev/null +++ b/src/main/java/com/stefanini/personal/web/controller/PersonController.java @@ -0,0 +1,79 @@ +package com.stefanini.personal.web.controller; + +import com.stefanini.personal.domain.dto.ApiResponse; +import com.stefanini.personal.domain.service.PersonService; +import com.stefanini.personal.domain.dto.PersonDTO; +import com.stefanini.personal.exception.CreatePersonException; +import com.stefanini.personal.exception.NoDataFoundException; +import com.stefanini.personal.exception.PersonNotFoundException; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.*; + +import java.util.List; + +@RestController +@RequestMapping("/persons") +public class PersonController { + + @Autowired + private PersonService personService; + + @PostMapping + public ResponseEntity> createPerson(@RequestBody PersonDTO personDTO) { + try { + System.out.println(personDTO); + System.out.println("personDTO2"); + PersonDTO createdPerson = personService.createPerson(personDTO); + ApiResponse response = new ApiResponse<>(true, "Persona creada exitosamente", createdPerson); + return ResponseEntity.status(HttpStatus.CREATED).body(response); + } catch (CreatePersonException ex) { + System.out.println(ex.getMessage()); + ApiResponse response = new ApiResponse<>(false, ex.getMessage(), null); + return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(response); + } + } + + @GetMapping("/{id}") + public ResponseEntity> getPersonById(@PathVariable Integer id) { + try { + PersonDTO personDTO = personService.getPersonById(id); + ApiResponse response = new ApiResponse<>(true, "Persona encontrada", personDTO); + return ResponseEntity.ok(response); + } catch (PersonNotFoundException ex) { + ApiResponse response = new ApiResponse<>(false,"Persona no encontrada", null); + return ResponseEntity.status(HttpStatus.NOT_FOUND).body(response); + } + } + + @GetMapping + public ResponseEntity>> getAllPersons() { + try { + List persons = personService.getAllPersons(); + ApiResponse> response = new ApiResponse<>(true, "Datos encontrados", persons); + return ResponseEntity.ok(response); + } catch (NoDataFoundException ex) { + ApiResponse> response = new ApiResponse<>(false, ex.getMessage(), null); + return ResponseEntity.status(HttpStatus.NOT_FOUND).body(response); + } + } + + @PutMapping("/{id}") + public ResponseEntity updatePerson(@PathVariable Integer id, @RequestBody PersonDTO personDTO) { + PersonDTO updatedPerson = personService.updatePerson(id, personDTO); + return ResponseEntity.ok(updatedPerson); + } + + @DeleteMapping("/{id}") + public ResponseEntity> deletePerson(@PathVariable Integer id) { + try { + personService.deletePerson(id); + ApiResponse response = new ApiResponse<>(true, "Persona eliminada exitosamente", null); + return ResponseEntity.ok(response); + } catch (PersonNotFoundException ex) { + ApiResponse response = new ApiResponse<>(false, ex.getMessage(), null); + return ResponseEntity.status(HttpStatus.NOT_FOUND).body(response); + } + } +} \ No newline at end of file From 6aecdcf5eae1bb1ec0a8d4e825bb5dcb391ed196 Mon Sep 17 00:00:00 2001 From: programador89 Date: Fri, 31 Jan 2025 15:46:39 -0600 Subject: [PATCH 2/3] Commit inicial para el crud de personas --- bd/README.md | 44 --------------------------------------- bd/script_creacion_bd.sql | 12 ----------- 2 files changed, 56 deletions(-) delete mode 100644 bd/README.md delete mode 100644 bd/script_creacion_bd.sql diff --git a/bd/README.md b/bd/README.md deleted file mode 100644 index 0ad162f..0000000 --- a/bd/README.md +++ /dev/null @@ -1,44 +0,0 @@ -# Requerimientos - -- MySQL instalado en su sistema. Desarrollado con Ver 8.0.31 for Win64 on x86_64 (MySQL Community Server - GPL). -- Acceso de administrador a MySQL. - -# Despliegue y Ejecución - -1. Clonar este repositorio: - ``` - git clone https://github.com/usuario/repositorio.git - ``` - -2. Iniciar sesión en MySQL como usuario root: - ``` - mysql -u root -p - ``` - -3. Cargar el script de creación de la base de datos: - ``` - source ruta_del_script_creacion_bd.sql - ``` - Ejemplo: `D:\SRC\GitHub\tonysoft2018\tesffullstack\bd\script_creacion_bd.sql` - -4. Cambiar a la base de datos recién creada: - ``` - USE bd_garcia; - ``` - -5. Ejecutar la consulta para verificar los datos en la tabla person: - ``` - SELECT * FROM person; - ``` - -6. Crear un nuevo usuario para la conexión del backend y otorgarle privilegios: - ``` - CREATE USER 'conexion'@'localhost' IDENTIFIED BY 'Wk2!rT8s@6w'; - GRANT ALL PRIVILEGES ON bd_garcia.* TO 'conexion'@'localhost'; - FLUSH PRIVILEGES; - ``` - -7. Salir de MySQL: - ``` - exit; - ``` \ No newline at end of file diff --git a/bd/script_creacion_bd.sql b/bd/script_creacion_bd.sql deleted file mode 100644 index 89a9fbc..0000000 --- a/bd/script_creacion_bd.sql +++ /dev/null @@ -1,12 +0,0 @@ -CREATE DATABASE IF NOT EXISTS bd_garcia; - -USE bd_garcia; - -CREATE TABLE IF NOT EXISTS person ( - id INT AUTO_INCREMENT PRIMARY KEY, - nombre VARCHAR(255), - apellido VARCHAR(255), - fechaNacimiento DATE, - puesto VARCHAR(255), - sueldo DECIMAL(10, 2) -); From 79db5a2ac5c766b72cc0ff2ac4ac299d1ffd4843 Mon Sep 17 00:00:00 2001 From: programador89 Date: Sat, 1 Feb 2025 16:44:09 -0600 Subject: [PATCH 3/3] Commit inicial para el crud de personas CORS --- .../personal/web/controller/PersonController.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/com/stefanini/personal/web/controller/PersonController.java b/src/main/java/com/stefanini/personal/web/controller/PersonController.java index 6bf4bca..998f01b 100644 --- a/src/main/java/com/stefanini/personal/web/controller/PersonController.java +++ b/src/main/java/com/stefanini/personal/web/controller/PersonController.java @@ -19,7 +19,7 @@ public class PersonController { @Autowired private PersonService personService; - + @CrossOrigin(origins = "*") @PostMapping public ResponseEntity> createPerson(@RequestBody PersonDTO personDTO) { try { @@ -34,7 +34,7 @@ public ResponseEntity> createPerson(@RequestBody PersonDT return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(response); } } - + @CrossOrigin(origins = "*") @GetMapping("/{id}") public ResponseEntity> getPersonById(@PathVariable Integer id) { try { @@ -46,7 +46,7 @@ public ResponseEntity> getPersonById(@PathVariable Intege return ResponseEntity.status(HttpStatus.NOT_FOUND).body(response); } } - + @CrossOrigin(origins = "*") @GetMapping public ResponseEntity>> getAllPersons() { try { @@ -58,13 +58,13 @@ public ResponseEntity>> getAllPersons() { return ResponseEntity.status(HttpStatus.NOT_FOUND).body(response); } } - + @CrossOrigin(origins = "*") @PutMapping("/{id}") public ResponseEntity updatePerson(@PathVariable Integer id, @RequestBody PersonDTO personDTO) { PersonDTO updatedPerson = personService.updatePerson(id, personDTO); return ResponseEntity.ok(updatedPerson); } - + @CrossOrigin(origins = "*") @DeleteMapping("/{id}") public ResponseEntity> deletePerson(@PathVariable Integer id) { try {