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
7f8d3adb
Commit
7f8d3adb
authored
Jul 29, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se maneja el control de excepciones en ServiceUzyTCanton
parent
6cc58af6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
71 additions
and
32 deletions
+71
-32
UzyTCantonController.java
...ovilidad/MovilidadWS/Controller/UzyTCantonController.java
+7
-3
UzyTavDocPartiController.java
...idad/MovilidadWS/Controller/UzyTavDocPartiController.java
+1
-1
IServiceUzyTCanton.java
...ad/MovilidadWS/Service/UzyTCanton/IServiceUzyTCanton.java
+1
-1
ServiceUzyTCanton.java
...dad/MovilidadWS/Service/UzyTCanton/ServiceUzyTCanton.java
+60
-23
IServiceUzyTavDocParti.java
...idadWS/Service/UzyTavDocParti/IServiceUzyTavDocParti.java
+1
-3
ServiceUzyTavDocParti.java
...lidadWS/Service/UzyTavDocParti/ServiceUzyTavDocParti.java
+1
-1
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTCantonController.java
View file @
7f8d3adb
...
@@ -60,9 +60,13 @@ public class UzyTCantonController {
...
@@ -60,9 +60,13 @@ public class UzyTCantonController {
}
}
@DeleteMapping
(
"/eliminar/{id}"
)
@DeleteMapping
(
"/eliminar/{id}"
)
public
ResponseEntity
<
Void
>
eliminar
(
@PathVariable
String
id
)
{
public
ResponseEntity
<
String
>
eliminar
(
@PathVariable
String
id
)
{
serviceUzyTCanton
.
eliminar
(
id
);
boolean
eliminado
=
serviceUzyTCanton
.
eliminar
(
id
);
return
ResponseEntity
.
ok
().
build
();
if
(
eliminado
)
{
return
ResponseEntity
.
ok
(
"El registro se eliminó exitosamente."
);
}
else
{
return
ResponseEntity
.
notFound
().
build
();
}
}
}
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTavDocPartiController.java
View file @
7f8d3adb
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Controller
;
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Controller
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Service.
IService
UzyTavDocParti.IServiceUzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Service.UzyTavDocParti.IServiceUzyTavDocParti
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTCanton/IServiceUzyTCanton.java
View file @
7f8d3adb
...
@@ -20,5 +20,5 @@ public interface IServiceUzyTCanton {
...
@@ -20,5 +20,5 @@ public interface IServiceUzyTCanton {
List
<
DtoUzyTCanton
>
findByIdDatosConProvincia
(
String
id
);
List
<
DtoUzyTCanton
>
findByIdDatosConProvincia
(
String
id
);
void
eliminar
(
String
id
);
boolean
eliminar
(
String
id
);
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTCanton/ServiceUzyTCanton.java
View file @
7f8d3adb
...
@@ -10,9 +10,8 @@ import ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTCanton;
...
@@ -10,9 +10,8 @@ import ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTCanton;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTProvincia
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTProvincia
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
java.util.List
;
import
java.util.List
;
import
java.util.stream.Collectors
;
@Service
@Service
public
class
ServiceUzyTCanton
implements
IServiceUzyTCanton
{
public
class
ServiceUzyTCanton
implements
IServiceUzyTCanton
{
...
@@ -29,32 +28,43 @@ public class ServiceUzyTCanton implements IServiceUzyTCanton {
...
@@ -29,32 +28,43 @@ public class ServiceUzyTCanton implements IServiceUzyTCanton {
@Override
@Override
public
DtoUzyTCanton
ListarPorID
(
@PathVariable
String
id
)
{
public
DtoUzyTCanton
ListarPorID
(
@PathVariable
String
id
)
{
ModelUzyTCanton
entity
=
daoUzyTCanton
.
findById
(
id
)
try
{
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
ModelUzyTCanton
entity
=
daoUzyTCanton
.
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 el canton con ID: "
+
id
);
}
}
}
@Override
@Override
public
List
<
DtoUzyTCanton
>
ListarRegistros
()
{
public
List
<
DtoUzyTCanton
>
ListarRegistros
()
{
List
<
ModelUzyTCanton
>
entities
=
daoUzyTCanton
.
findAll
();
try
{
return
entities
.
stream
()
List
<
ModelUzyTCanton
>
entities
=
daoUzyTCanton
.
findAll
();
.
map
(
mapper:
:
entityToDto
)
// Utilizar mapper::entityToDto en lugar de mapper::dtoToEntity
return
mapper
.
entitiesToDtos
(
entities
);
.
collect
(
Collectors
.
toList
());
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al listar registros de canton: "
+
ex
.
getMessage
());
}
}
}
@Override
@Override
public
DtoUzyTCanton
guardar
(
DtoUzyTCanton
dtoUzyTCanton
)
{
public
DtoUzyTCanton
guardar
(
DtoUzyTCanton
dtoUzyTCanton
)
{
ModelUzyTCanton
entity
=
mapper
.
dtoToEntity
(
dtoUzyTCanton
);
try
{
ModelUzyTCanton
nuevoEntity
=
daoUzyTCanton
.
save
(
entity
);
ModelUzyTCanton
entity
=
mapper
.
dtoToEntity
(
dtoUzyTCanton
);
return
mapper
.
entityToDto
(
nuevoEntity
);
ModelUzyTCanton
nuevoEntity
=
daoUzyTCanton
.
save
(
entity
);
return
mapper
.
entityToDto
(
nuevoEntity
);
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al guardar la provincia: "
+
ex
.
getMessage
());
}
}
}
@Override
@Override
public
DtoUzyTCanton
editar
(
String
id
,
DtoUzyTCanton
dtoUzyTCanton
)
{
public
DtoUzyTCanton
editar
(
String
id
,
DtoUzyTCanton
dtoUzyTCanton
)
{
try
{
try
{
ModelUzyTCanton
entity
=
daoUzyTCanton
.
findById
(
id
).
get
();
ModelUzyTCanton
entity
=
daoUzyTCanton
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"Canton no encontrado con ID: "
+
id
));
entity
.
setUzytcanton_id
(
dtoUzyTCanton
.
getUzytcanton_id
());
entity
.
setUzytcantonnombre
(
dtoUzyTCanton
.
getUzytcantonnombre
());
entity
.
setUzytcantonnombre
(
dtoUzyTCanton
.
getUzytcantonnombre
());
entity
.
setUzytcantonbanner
(
dtoUzyTCanton
.
getUzytcantonbanner
());
entity
.
setUzytcantonbanner
(
dtoUzyTCanton
.
getUzytcantonbanner
());
entity
.
setUzytcantonGrupo
(
dtoUzyTCanton
.
getUzytcantongrupo
());
entity
.
setUzytcantonGrupo
(
dtoUzyTCanton
.
getUzytcantongrupo
());
...
@@ -62,26 +72,53 @@ public class ServiceUzyTCanton implements IServiceUzyTCanton {
...
@@ -62,26 +72,53 @@ public class ServiceUzyTCanton implements IServiceUzyTCanton {
entity
.
setUzytcantonLongitud
(
dtoUzyTCanton
.
getUzytcantonlongitud
());
entity
.
setUzytcantonLongitud
(
dtoUzyTCanton
.
getUzytcantonlongitud
());
ModelUzyTCanton
updatedEntity
=
daoUzyTCanton
.
save
(
entity
);
ModelUzyTCanton
updatedEntity
=
daoUzyTCanton
.
save
(
entity
);
return
mapper
.
entityToDto
(
updatedEntity
);
return
mapper
.
entityToDto
(
updatedEntity
);
}
catch
(
Exception
e
)
{
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
e
)
{
throw
new
ResourceNotFoundException
(
"Error al editar el registro: "
+
e
.
getMessage
());
throw
new
ResourceNotFoundException
(
"Error al editar el registro: "
+
e
.
getMessage
());
}
}
}
}
@Override
@Override
public
List
<
DtoUzyTCanton
>
findByIdDatosConProvincia
(
String
id
)
{
public
List
<
DtoUzyTCanton
>
findByIdDatosConProvincia
(
String
id
)
{
List
<
ModelUzyTCanton
>
entities
=
daoUzyTCanton
.
findByIdDatosConProvincia
(
id
);
try
{
return
mapper
.
entitiesToDtos
(
entities
);
List
<
ModelUzyTCanton
>
entities
=
daoUzyTCanton
.
findByIdDatosConProvincia
(
id
)
;
return
mapper
.
entitiesToDtos
(
entities
);
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
ex
)
{
// Manejo de cualquier error en el servidor
throw
new
RuntimeException
(
"Error al buscar los registros con el ID: "
+
id
);
}
}
}
@Override
@Override
public
DtoUzyTProvincia
findCantonByCantonId
(
String
uzytcanton_id
)
{
public
DtoUzyTProvincia
findCantonByCantonId
(
String
uzytcanton_id
)
{
ModelUzyTProvincia
entity
=
daoUzyTCanton
.
findCantonByCantonId
(
uzytcanton_id
);
try
{
return
mapperProvincia
.
entityToDto
(
entity
);
ModelUzyTProvincia
entity
=
daoUzyTCanton
.
findCantonByCantonId
(
uzytcanton_id
);
return
mapperProvincia
.
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: "
+
uzytcanton_id
);
}
}
}
@Override
@Override
public
void
eliminar
(
String
id
)
{
public
boolean
eliminar
(
String
id
)
{
ModelUzyTCanton
dato
=
daoUzyTCanton
.
findById
(
id
).
get
();
try
{
daoUzyTCanton
.
delete
(
dato
);
ModelUzyTCanton
entity
=
daoUzyTCanton
.
findById
(
id
).
orElseThrow
(()
->
new
ResourceNotFoundException
(
"Canton no encontrado con ID: "
+
id
));
if
(
entity
!=
null
)
{
daoUzyTCanton
.
delete
(
entity
);
return
true
;
}
return
false
;
}
catch
(
ResourceNotFoundException
ex
)
{
throw
ex
;
}
catch
(
Exception
ex
)
{
throw
new
RuntimeException
(
"Error al eliminar el canton: "
+
ex
.
getMessage
());
}
}
}
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/
IService
UzyTavDocParti/IServiceUzyTavDocParti.java
→
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavDocParti/IServiceUzyTavDocParti.java
View file @
7f8d3adb
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
IService
UzyTavDocParti
;
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTavDocParti
;
import
org.springframework.data.repository.query.Param
;
import
java.util.List
;
import
java.util.List
;
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/
IService
UzyTavDocParti/ServiceUzyTavDocParti.java
→
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavDocParti/ServiceUzyTavDocParti.java
View file @
7f8d3adb
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
IService
UzyTavDocParti
;
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Dao.DaoUzyTavDocParti
;
import
ec.edu.espe.movilidad.MovilidadWS.Dao.DaoUzyTavDocParti
;
...
...
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