Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
BackEnd-V2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Joel Andres Molina Velez
BackEnd-V2
Commits
cd5ea98d
Commit
cd5ea98d
authored
Jul 26, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se maneja las excepciones en ServiceUzyTPlanificacion
parent
dfff2539
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
72 additions
and
35 deletions
+72
-35
UzyTPlanificacionController.java
...d/MovilidadWS/Controller/UzyTPlanificacionController.java
+10
-13
UzyTProvinciaController.java
...lidad/MovilidadWS/Controller/UzyTProvinciaController.java
+9
-8
IServiceUzyTPlanificacion.java
.../Service/UzyTPlanificacion/IServiceUzyTPlanificacion.java
+1
-1
ServiceUzyTPlanificacion.java
...S/Service/UzyTPlanificacion/ServiceUzyTPlanificacion.java
+52
-13
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTPlanificacionController.java
View file @
cd5ea98d
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Controller
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTCanton
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTPerfil
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTPlanificacion
;
import
ec.edu.espe.movilidad.MovilidadWS.Service.UzyTPerfil.IServiceUzyTPerfil
;
import
ec.edu.espe.movilidad.MovilidadWS.Service.UzyTPlanificacion.IServiceUzyTPlanificacion
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
import
javax.validation.Valid
;
import
java.util.List
;
import
static
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Constant
.
GlobalConstants
.
V1_API_VERSION
;
...
...
@@ -40,20 +34,23 @@ public class UzyTPlanificacionController {
@PostMapping
(
"/guardar"
)
public
ResponseEntity
<
DtoUzyTPlanificacion
>
guardar
(
@RequestBody
DtoUzyTPlanificacion
dtoUzyTPlanificacion
)
{
DtoUzyTPlanificacion
savedDto
=
serviceUzyTPlanificacion
.
guardar
(
dtoUzyTPlanificacion
);
return
ResponseEntity
.
ok
(
savedDto
);
return
new
ResponseEntity
<>(
serviceUzyTPlanificacion
.
guardar
(
dtoUzyTPlanificacion
),
HttpStatus
.
OK
);
}
@PutMapping
(
"/editar/{id}"
)
public
ResponseEntity
<
DtoUzyTPlanificacion
>
editar
(
@PathVariable
Long
id
,
@RequestBody
DtoUzyTPlanificacion
dtoUzyTPlanificacion
)
{
DtoUzyTPlanificacion
editedDto
=
serviceUzyTPlanificacion
.
editar
(
id
,
dtoUzyTPlanificacion
);
return
ResponseEntity
.
ok
(
editedDto
);
return
new
ResponseEntity
<>(
serviceUzyTPlanificacion
.
editar
(
id
,
dtoUzyTPlanificacion
),
HttpStatus
.
OK
);
}
@DeleteMapping
(
"/eliminar/{id}"
)
public
ResponseEntity
<
Void
>
eliminar
(
@PathVariable
Long
id
)
{
serviceUzyTPlanificacion
.
eliminar
(
id
);
return
ResponseEntity
.
ok
().
build
();
public
ResponseEntity
<
String
>
eliminar
(
@PathVariable
Long
id
)
{
boolean
eliminado
=
serviceUzyTPlanificacion
.
eliminar
(
id
);
if
(
eliminado
)
{
return
ResponseEntity
.
ok
(
"El registro se eliminó exitosamente."
);
}
else
{
return
ResponseEntity
.
notFound
().
build
();
}
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTProvinciaController.java
View file @
cd5ea98d
...
...
@@ -7,6 +7,7 @@ import ec.edu.espe.movilidad.MovilidadWS.Service.UzyTProvincia.IServiceUzyTProvi
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
...
...
@@ -29,27 +30,27 @@ public class UzyTProvinciaController {
@GetMapping
(
"/exampleFindId/{id}"
)
public
ResponseEntity
<
DtoUzyTProvincia
>
ListarPorID
(
@PathVariable
String
id
)
{
DtoUzyTProvincia
dto
=
serviceUzyTProvincia
.
ListarPorID
(
id
);
return
ResponseEntity
.
ok
(
dto
);
return
ResponseEntity
.
ok
(
serviceUzyTProvincia
.
ListarPorID
(
id
)
);
}
@GetMapping
(
"/getAll"
)
public
ResponseEntity
<
List
<
DtoUzyTProvincia
>>
ListarRegistros
()
{
List
<
DtoUzyTProvincia
>
dtos
=
serviceUzyTProvincia
.
ListarRegistros
(
);
return
ResponseEntity
.
ok
(
dtos
);
return
new
ResponseEntity
<>(
serviceUzyTProvincia
.
ListarRegistros
(),
HttpStatus
.
OK
);
}
@PostMapping
(
"/guardar"
)
public
ResponseEntity
<
DtoUzyTProvincia
>
guardar
(
@RequestBody
DtoUzyTProvincia
DtoUzyTProvincia
)
{
DtoUzyTProvincia
savedDto
=
serviceUzyTProvincia
.
guardar
(
DtoUzyTProvincia
);
return
ResponseEntity
.
ok
(
savedDto
);
return
new
ResponseEntity
<>(
serviceUzyTProvincia
.
guardar
(
DtoUzyTProvincia
),
HttpStatus
.
OK
);
}
@PutMapping
(
"/editar/{id}"
)
public
ResponseEntity
<
DtoUzyTProvincia
>
editar
(
@PathVariable
String
id
,
@RequestBody
DtoUzyTProvincia
DtoUzyTProvincia
)
{
DtoUzyTProvincia
editedDto
=
serviceUzyTProvincia
.
editar
(
id
,
DtoUzyTProvincia
);
return
ResponseEntity
.
ok
(
editedDto
);
return
new
ResponseEntity
<>(
serviceUzyTProvincia
.
editar
(
id
,
DtoUzyTProvincia
),
HttpStatus
.
OK
);
}
@DeleteMapping
(
"/eliminar/{id}"
)
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTPlanificacion/IServiceUzyTPlanificacion.java
View file @
cd5ea98d
...
...
@@ -14,5 +14,5 @@ public interface IServiceUzyTPlanificacion {
DtoUzyTPlanificacion
editar
(
Long
id
,
DtoUzyTPlanificacion
dtoUzyTPlanificacion
);
void
eliminar
(
Long
id
);
boolean
eliminar
(
Long
id
);
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTPlanificacion/ServiceUzyTPlanificacion.java
View file @
cd5ea98d
...
...
@@ -23,26 +23,50 @@ public class ServiceUzyTPlanificacion implements IServiceUzyTPlanificacion {
@Override
public
DtoUzyTPlanificacion
ListarPorID
(
@PathVariable
Long
id
)
{
ModelUzyTPlanificacion
entity
=
daoUzyTPlanificacion
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
return
mapper
.
entityToDto
(
entity
);
if
(
id
<=
0
)
{
throw
new
IllegalArgumentException
(
"El parámetro 'id' debe ser un valor positivo."
);
}
try
{
ModelUzyTPlanificacion
entity
=
daoUzyTPlanificacion
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
return
mapper
.
entityToDto
(
entity
);
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
ex
)
{
// Manejo de cualquier error en el servidor
throw
new
RuntimeException
(
"Error al buscar el registro con ID: "
+
id
);
}
}
@Override
public
List
<
DtoUzyTPlanificacion
>
ListarRegistros
()
{
List
<
ModelUzyTPlanificacion
>
entities
=
daoUzyTPlanificacion
.
findAll
();
return
mapper
.
entitiesToDtos
(
entities
);
try
{
List
<
ModelUzyTPlanificacion
>
entities
=
daoUzyTPlanificacion
.
findAll
();
return
mapper
.
entitiesToDtos
(
entities
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al listar los registros: "
+
ex
.
getMessage
());
}
}
@Override
public
DtoUzyTPlanificacion
guardar
(
DtoUzyTPlanificacion
dtoUzyTPlanificacion
)
{
ModelUzyTPlanificacion
entity
=
mapper
.
dtoToEntity
(
dtoUzyTPlanificacion
);
ModelUzyTPlanificacion
nuevoEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
return
mapper
.
entityToDto
(
nuevoEntity
);
if
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre
()
==
null
)
{
throw
new
IllegalArgumentException
(
"El nombre de la planificación no puede ser nulo."
);
}
try
{
ModelUzyTPlanificacion
entity
=
mapper
.
dtoToEntity
(
dtoUzyTPlanificacion
);
ModelUzyTPlanificacion
nuevoEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
return
mapper
.
entityToDto
(
nuevoEntity
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al guardar el registro: "
+
ex
.
getMessage
());
}
}
@Override
public
DtoUzyTPlanificacion
editar
(
Long
id
,
DtoUzyTPlanificacion
dtoUzyTPlanificacion
)
{
if
(
id
<=
0
)
{
throw
new
IllegalArgumentException
(
"El ID del usuario debe ser válido y mayor que cero."
);
}
try
{
ModelUzyTPlanificacion
entity
=
daoUzyTPlanificacion
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
...
...
@@ -50,15 +74,30 @@ public class ServiceUzyTPlanificacion implements IServiceUzyTPlanificacion {
entity
.
setUzytplanificacionNombreLargo
(
dtoUzyTPlanificacion
.
getUzytplanificacionnombre_largo
());
ModelUzyTPlanificacion
updatedEntity
=
daoUzyTPlanificacion
.
save
(
entity
);
return
mapper
.
entityToDto
(
updatedEntity
);
}
catch
(
Exception
e
)
{
throw
new
ResourceNotFoundException
(
"Error al editar el registro: "
+
e
.
getMessage
());
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al editar el usuario -> "
+
ex
.
getMessage
());
}
}
@Override
public
void
eliminar
(
Long
id
)
{
ModelUzyTPlanificacion
dato
=
daoUzyTPlanificacion
.
findById
(
id
).
get
();
public
boolean
eliminar
(
Long
id
)
{
if
(
id
==
null
||
id
<=
0
)
{
throw
new
IllegalArgumentException
(
"El ID del usuario debe ser válido y mayor que cero."
);
}
try
{
daoUzyTPlanificacion
.
delete
(
dato
);
ModelUzyTPlanificacion
entity
=
daoUzyTPlanificacion
.
findById
(
id
).
orElseThrow
(()
->
new
ResourceNotFoundException
(
"Registro no encontrado con ID: "
+
id
));
if
(
entity
!=
null
)
{
daoUzyTPlanificacion
.
delete
(
entity
);
return
true
;
}
return
false
;
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al eliminar el registro: "
+
ex
.
getMessage
());
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment