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
6b43f9b9
Commit
6b43f9b9
authored
Jul 27, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se manejan las excepciones de ServiceUzyTParroquia
parent
ee50341e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
26 deletions
+77
-26
IServiceUzyTParroquia.java
...ilidadWS/Service/UzyTParroquia/IServiceUzyTParroquia.java
+1
-1
ServiceUzyTParroquia.java
...vilidadWS/Service/UzyTParroquia/ServiceUzyTParroquia.java
+76
-25
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTParroquia/IServiceUzyTParroquia.java
View file @
6b43f9b9
...
@@ -18,7 +18,7 @@ public interface IServiceUzyTParroquia {
...
@@ -18,7 +18,7 @@ public interface IServiceUzyTParroquia {
DtoUzyTParroquia
editar
(
String
id
,
DtoUzyTParroquia
dtoUzyTParroquia
);
DtoUzyTParroquia
editar
(
String
id
,
DtoUzyTParroquia
dtoUzyTParroquia
);
void
eliminar
(
String
id
);
boolean
eliminar
(
String
id
);
List
<
DtoParroquiaCantonProvincia
>
obtenerIdsCantonYProvinciaPorParroquia
(
String
parroquiaId
);
List
<
DtoParroquiaCantonProvincia
>
obtenerIdsCantonYProvinciaPorParroquia
(
String
parroquiaId
);
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTParroquia/ServiceUzyTParroquia.java
View file @
6b43f9b9
...
@@ -33,34 +33,67 @@ public class ServiceUzyTParroquia implements IServiceUzyTParroquia {
...
@@ -33,34 +33,67 @@ public class ServiceUzyTParroquia implements IServiceUzyTParroquia {
@Override
@Override
public
DtoUzyTParroquia
ListarPorID
(
@PathVariable
String
id
)
{
public
DtoUzyTParroquia
ListarPorID
(
@PathVariable
String
id
)
{
ModelUzyTParroquia
entity
=
daoUzyTParroquia
.
findById
(
id
)
try
{
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
ModelUzyTParroquia
entity
=
daoUzyTParroquia
.
findById
(
id
)
return
mapper
.
entityToDto
(
entity
);
.
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 la parroquia con ID: "
+
id
);
}
}
}
@Override
@Override
public
List
<
DtoUzyTParroquia
>
ListarRegistros
()
{
public
List
<
DtoUzyTParroquia
>
ListarRegistros
()
{
List
<
ModelUzyTParroquia
>
entities
=
daoUzyTParroquia
.
findAll
();
try
{
return
mapper
.
entitiesToDtos
(
entities
);
List
<
ModelUzyTParroquia
>
entities
=
daoUzyTParroquia
.
findAll
();
return
mapper
.
entitiesToDtos
(
entities
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al listar registros de parroquia: "
+
ex
.
getMessage
());
}
}
}
@Override
@Override
public
List
<
DtoUzyTParroquia
>
findByIdDatosConCanton
(
String
id
)
{
public
List
<
DtoUzyTParroquia
>
findByIdDatosConCanton
(
String
id
)
{
List
<
ModelUzyTParroquia
>
entities
=
daoUzyTParroquia
.
findByIdDatosConCanton
(
id
);
try
{
return
mapper
.
entitiesToDtos
(
entities
);
List
<
ModelUzyTParroquia
>
entities
=
daoUzyTParroquia
.
findByIdDatosConCanton
(
id
);
return
mapper
.
entitiesToDtos
(
entities
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al listar los registros: "
+
ex
.
getMessage
());
}
}
}
@Override
@Override
public
DtoUzyTCanton
findCantonByParroquiaId
(
String
parroquiaId
)
{
public
DtoUzyTCanton
findCantonByParroquiaId
(
String
parroquiaId
)
{
ModelUzyTCanton
entity
=
daoUzyTParroquia
.
findCantonByParroquiaId
(
parroquiaId
);
try
{
return
mapperCanton
.
entityToDto
(
entity
);
ModelUzyTCanton
entity
=
daoUzyTParroquia
.
findCantonByParroquiaId
(
parroquiaId
);
return
mapperCanton
.
entityToDto
(
entity
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al listar los registros: "
+
ex
.
getMessage
());
}
}
@Override
public
List
<
DtoParroquiaCantonProvincia
>
obtenerIdsCantonYProvinciaPorParroquia
(
String
parroquiaId
)
{
try
{
return
daoUzyTParroquia
.
findCantonAndProvinciaIdsByParroquiaId
(
parroquiaId
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al listar los registros: "
+
ex
.
getMessage
());
}
}
}
@Override
@Override
public
DtoUzyTParroquia
guardar
(
DtoUzyTParroquia
dtoUzyTParroquia
)
{
public
DtoUzyTParroquia
guardar
(
DtoUzyTParroquia
dtoUzyTParroquia
)
{
ModelUzyTParroquia
entity
=
mapper
.
dtoToEntity
(
dtoUzyTParroquia
);
try
{
ModelUzyTParroquia
nuevoEntity
=
daoUzyTParroquia
.
save
(
entity
);
ModelUzyTParroquia
entity
=
mapper
.
dtoToEntity
(
dtoUzyTParroquia
);
return
mapper
.
entityToDto
(
nuevoEntity
);
ModelUzyTParroquia
nuevoEntity
=
daoUzyTParroquia
.
save
(
entity
);
return
mapper
.
entityToDto
(
nuevoEntity
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al guardar la parroquia: "
+
ex
.
getMessage
());
}
}
}
@Override
@Override
...
@@ -68,24 +101,42 @@ public class ServiceUzyTParroquia implements IServiceUzyTParroquia {
...
@@ -68,24 +101,42 @@ public class ServiceUzyTParroquia implements IServiceUzyTParroquia {
try
{
try
{
ModelUzyTParroquia
entity
=
daoUzyTParroquia
.
findById
(
id
)
ModelUzyTParroquia
entity
=
daoUzyTParroquia
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
entity
.
setUzytparroquia_id
(
dtoUzyTParroquia
.
getUzytparroquia_id
());
entity
.
setUzytparroquia_nombre
(
dtoUzyTParroquia
.
getUzytparroquia_nombre
());
if
(
dtoUzyTParroquia
.
getUzytparroquia_id
()!=
null
){
entity
.
setUzytparroquia_tipo
(
dtoUzyTParroquia
.
getUzytparroquia_tipo
());
entity
.
setUzytparroquia_id
(
dtoUzyTParroquia
.
getUzytparroquia_id
());
entity
.
setUzytparroquia_grupo_recinto
(
dtoUzyTParroquia
.
getUzytparroquia_grupo_recinto
());
}
if
(
dtoUzyTParroquia
.
getUzytparroquia_nombre
()
!=
null
){
entity
.
setUzytparroquia_nombre
(
dtoUzyTParroquia
.
getUzytparroquia_nombre
());
}
if
(
dtoUzyTParroquia
.
getUzytparroquia_tipo
()!=
null
){
entity
.
setUzytparroquia_tipo
(
dtoUzyTParroquia
.
getUzytparroquia_tipo
());
}
if
(
dtoUzyTParroquia
.
getUzytparroquia_grupo_recinto
()
!=
null
){
entity
.
setUzytparroquia_grupo_recinto
(
dtoUzyTParroquia
.
getUzytparroquia_grupo_recinto
());
}
ModelUzyTParroquia
updatedEntity
=
daoUzyTParroquia
.
save
(
entity
);
ModelUzyTParroquia
updatedEntity
=
daoUzyTParroquia
.
save
(
entity
);
return
mapper
.
entityToDto
(
updatedEntity
);
return
mapper
.
entityToDto
(
updatedEntity
);
}
catch
(
Exception
e
)
{
}
catch
(
ResourceNotFoundException
ex
)
{
throw
new
ResourceNotFoundException
(
"Error al editar el registro: "
+
e
.
getMessage
());
throw
ex
;
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al editar la provincia -> "
+
ex
.
getMessage
());
}
}
}
}
@Override
public
List
<
DtoParroquiaCantonProvincia
>
obtenerIdsCantonYProvinciaPorParroquia
(
String
parroquiaId
)
{
return
daoUzyTParroquia
.
findCantonAndProvinciaIdsByParroquiaId
(
parroquiaId
);
}
@Override
@Override
public
void
eliminar
(
String
id
)
{
public
boolean
eliminar
(
String
id
)
{
ModelUzyTParroquia
dato
=
daoUzyTParroquia
.
findById
(
id
).
get
();
try
{
daoUzyTParroquia
.
delete
(
dato
);
ModelUzyTParroquia
entity
=
daoUzyTParroquia
.
findById
(
id
).
orElseThrow
(()
->
new
ResourceNotFoundException
(
"Provincia no encontrada con ID: "
+
id
));
if
(
entity
!=
null
)
{
daoUzyTParroquia
.
delete
(
entity
);
return
true
;
}
return
false
;
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al eliminar la parroquia: "
+
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