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
a104d71e
Commit
a104d71e
authored
Jun 24, 2023
by
Joel Andres Molina Velez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se agregan los servicios de OpcionInstitucion
parent
393a1e5a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
114 additions
and
57 deletions
+114
-57
UzyTavOpcionInstitucionController.java
...lidadWS/Controller/UzyTavOpcionInstitucionController.java
+11
-9
UzyTavOpcionInstitucionMapper.java
...apper/Components_Class/UzyTavOpcionInstitucionMapper.java
+34
-2
ModelUzyTavOpcionInstitucion.java
...lidad/MovilidadWS/Model/ModelUzyTavOpcionInstitucion.java
+8
-10
IServiceUzyTavOpcionInstitucion.java
...TavOpcionInstitucion/IServiceUzyTavOpcionInstitucion.java
+5
-5
ServiceUzyTavOpcionInstitucion.java
...yTavOpcionInstitucion/ServiceUzyTavOpcionInstitucion.java
+56
-31
No files found.
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Controller/UzyTavOpcionInstitucionController.java
View file @
a104d71e
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Controller
;
import
ec.edu.espe.movilidad.MovilidadWS.
Model.Model
UzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.
Dto.Dto
UzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.Service.UzyTavOpcionInstitucion.IServiceUzyTavOpcionInstitucion
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.HttpStatus
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
...
...
@@ -17,28 +16,31 @@ import static ec.edu.espe.movilidad.MovilidadWS.Constant.GlobalConstants.V1_API_
public
class
UzyTavOpcionInstitucionController
{
@Autowired
IServiceUzyTavOpcionInstitucion
serviceUzyTavOpcionInstitucion
;
private
final
IServiceUzyTavOpcionInstitucion
serviceUzyTavOpcionInstitucion
;
public
UzyTavOpcionInstitucionController
(
IServiceUzyTavOpcionInstitucion
serviceUzyTavOpcionInstitucion
)
{
this
.
serviceUzyTavOpcionInstitucion
=
serviceUzyTavOpcionInstitucion
;
}
@GetMapping
(
"/exampleFindId/{id}"
)
public
ResponseEntity
<
Model
UzyTavOpcionInstitucion
>
ListarPorID
(
@PathVariable
Long
id
)
{
public
ResponseEntity
<
Dto
UzyTavOpcionInstitucion
>
ListarPorID
(
@PathVariable
Long
id
)
{
return
new
ResponseEntity
<>(
serviceUzyTavOpcionInstitucion
.
ListarPorID
(
id
),
HttpStatus
.
OK
);
}
@GetMapping
(
"/getAll"
)
public
ResponseEntity
<
List
<
Model
UzyTavOpcionInstitucion
>>
ListarRegistros
()
{
public
ResponseEntity
<
List
<
Dto
UzyTavOpcionInstitucion
>>
ListarRegistros
()
{
return
new
ResponseEntity
<>(
serviceUzyTavOpcionInstitucion
.
ListarRegistros
(),
HttpStatus
.
OK
);
}
@PostMapping
(
"/guardar"
)
public
ResponseEntity
<
ModelUzyTavOpcionInstitucion
>
guardar
(
@RequestBody
ModelUzyTavOpcionInstitucion
model
UzyTavOpcionInstitucion
)
{
return
new
ResponseEntity
<>(
serviceUzyTavOpcionInstitucion
.
guardar
(
model
UzyTavOpcionInstitucion
),
HttpStatus
.
OK
);
public
ResponseEntity
<
DtoUzyTavOpcionInstitucion
>
guardar
(
@RequestBody
DtoUzyTavOpcionInstitucion
dto
UzyTavOpcionInstitucion
)
{
return
new
ResponseEntity
<>(
serviceUzyTavOpcionInstitucion
.
guardar
(
dto
UzyTavOpcionInstitucion
),
HttpStatus
.
OK
);
}
@PutMapping
(
"/editar/{id}"
)
public
ResponseEntity
<
ModelUzyTavOpcionInstitucion
>
editar
(
@PathVariable
Long
id
,
@RequestBody
Model
UzyTavOpcionInstitucion
modelUzyTavOpcionInstitucion
)
{
public
ResponseEntity
<
DtoUzyTavOpcionInstitucion
>
editar
(
@PathVariable
Long
id
,
@RequestBody
Dto
UzyTavOpcionInstitucion
modelUzyTavOpcionInstitucion
)
{
return
new
ResponseEntity
<>(
serviceUzyTavOpcionInstitucion
.
editar
(
id
,
modelUzyTavOpcionInstitucion
),
HttpStatus
.
OK
);
}
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Mapper/Components_Class/UzyTavOpcionInstitucionMapper.java
View file @
a104d71e
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Mapper
.
Components_Class
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTProvincia
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTavPrograma_V
;
import
org.modelmapper.ModelMapper
;
import
org.modelmapper.PropertyMap
;
import
org.springframework.stereotype.Component
;
import
javax.persistence.EntityManager
;
@Component
public
class
UzyTavOpcionInstitucionMapper
{
private
final
EntityManager
entityManager
;
private
final
ModelMapper
modelMapper
;
public
UzyTavOpcionInstitucionMapper
(
ModelMapper
modelMapper
)
{
public
UzyTavOpcionInstitucionMapper
(
ModelMapper
modelMapper
,
EntityManager
entityManager
)
{
this
.
modelMapper
=
modelMapper
;
this
.
entityManager
=
entityManager
;
configureMappings
();
}
private
void
configureMappings
()
{
modelMapper
.
addMappings
(
new
PropertyMap
<
ModelUzyTavOpcionInstitucion
,
DtoUzyTavOpcionInstitucion
>()
{
@Override
protected
void
configure
()
{
map
().
setUzytavopcion_institucion_id
(
source
.
getUzytavopcion_institucion_id
());
map
().
setUzytavprograma_v_id
(
source
.
getUzytavprograma_v
().
getUzytavprograma_v_id
());
map
().
setUzytprovincia_id
(
source
.
getUzytprovincia
().
getUzytprovincia_id
());
}
});
}
public
DtoUzyTavOpcionInstitucion
entityToDto
(
ModelUzyTavOpcionInstitucion
entity
)
{
...
...
@@ -18,6 +38,18 @@ public class UzyTavOpcionInstitucionMapper {
}
public
ModelUzyTavOpcionInstitucion
dtoToEntity
(
DtoUzyTavOpcionInstitucion
dto
)
{
return
modelMapper
.
map
(
dto
,
ModelUzyTavOpcionInstitucion
.
class
);
ModelUzyTavOpcionInstitucion
entity
=
modelMapper
.
map
(
dto
,
ModelUzyTavOpcionInstitucion
.
class
);
Long
uzytprograma_v_id
=
dto
.
getUzytavprograma_v_id
();
String
uzytprovincia_id
=
dto
.
getUzytprovincia_id
();
ModelUzyTavPrograma_V
programa
=
entityManager
.
find
(
ModelUzyTavPrograma_V
.
class
,
uzytprograma_v_id
);
entity
.
setUzytavprograma_v
(
programa
);
ModelUzyTProvincia
provincia
=
entityManager
.
find
(
ModelUzyTProvincia
.
class
,
uzytprovincia_id
);
entity
.
setUzytprovincia
(
provincia
);
return
entity
;
}
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Model/ModelUzyTavOpcionInstitucion.java
View file @
a104d71e
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Model
;
import
com.fasterxml.jackson.annotation.JsonIgnore
;
import
lombok.Data
;
import
lombok.Getter
;
import
lombok.Setter
;
import
javax.persistence.*
;
import
java.util.Date
;
@Data
@Getter
@Setter
@Entity
@Table
(
name
=
"uzytavopcion_institucion"
,
schema
=
"UTIC1"
)
public
class
ModelUzyTavOpcionInstitucion
{
...
...
@@ -55,17 +54,16 @@ public class ModelUzyTavOpcionInstitucion {
private
String
uzytavopcion_institucionorgano_ejecutor
;
//RELACIÓN CON PROGRAMA
@JsonIgnore
@ManyToOne
(
cascade
=
CascadeType
.
ALL
)
@ManyToOne
// @JoinColumn(name = "uzytavprograma_v_id", foreignKey = @ForeignKey(name = "fk_opint_programa")) útil para tener un mejor control y comprensión de las restricciones en la base de datos.
@JoinColumn
(
name
=
"uzytavprograma_v_id"
)
private
ModelUzyTavPrograma_V
uzytavprograma_v
;
//RELACIÓN CON PROVINCIA
@JsonIgnore
@ManyToOne
(
cascade
=
CascadeType
.
ALL
)
@ManyToOne
@JoinColumn
(
name
=
"uzytprovincia_id"
)
private
ModelUzyTProvincia
uzytprovincia
;
//
}
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavOpcionInstitucion/IServiceUzyTavOpcionInstitucion.java
View file @
a104d71e
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.
Model.Model
UzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.
Dto.Dto
UzyTavOpcionInstitucion
;
import
java.util.List
;
public
interface
IServiceUzyTavOpcionInstitucion
{
public
Model
UzyTavOpcionInstitucion
ListarPorID
(
Long
id
);
Dto
UzyTavOpcionInstitucion
ListarPorID
(
Long
id
);
public
List
<
Model
UzyTavOpcionInstitucion
>
ListarRegistros
();
List
<
Dto
UzyTavOpcionInstitucion
>
ListarRegistros
();
public
ModelUzyTavOpcionInstitucion
guardar
(
ModelUzyTavOpcionInstitucion
model
UzyTavOpcionInstitucion
);
DtoUzyTavOpcionInstitucion
guardar
(
DtoUzyTavOpcionInstitucion
dto
UzyTavOpcionInstitucion
);
public
ModelUzyTavOpcionInstitucion
editar
(
Long
id
,
ModelUzyTavOpcionInstitucion
model
UzyTavOpcionInstitucion
);
DtoUzyTavOpcionInstitucion
editar
(
Long
id
,
DtoUzyTavOpcionInstitucion
dto
UzyTavOpcionInstitucion
);
void
eliminar
(
Long
id
);
...
...
src/main/java/ec/edu/espe/movilidad/MovilidadWS/Service/UzyTavOpcionInstitucion/ServiceUzyTavOpcionInstitucion.java
View file @
a104d71e
package
ec
.
edu
.
espe
.
movilidad
.
MovilidadWS
.
Service
.
UzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.Dao.DaoUzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.Dto.DtoUzyTavOpcionInstitucion
;
import
ec.edu.espe.movilidad.MovilidadWS.Exceptions.ResourceNotFoundException
;
import
ec.edu.espe.movilidad.MovilidadWS.Mapper.Components_Class.UzyTavOpcionInstitucionMapper
;
import
ec.edu.espe.movilidad.MovilidadWS.Model.ModelUzyTavOpcionInstitucion
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
import
java.util.stream.Collectors
;
@Service
public
class
ServiceUzyTavOpcionInstitucion
implements
IServiceUzyTavOpcionInstitucion
{
@Autowired
DaoUzyTavOpcionInstitucion
daoUzyTavOpcionInstitucion
;
private
final
DaoUzyTavOpcionInstitucion
daoUzyTavOpcionInstitucion
;
private
final
UzyTavOpcionInstitucionMapper
mapper
;
public
ServiceUzyTavOpcionInstitucion
(
DaoUzyTavOpcionInstitucion
daoUzyTavOpcionInstitucion
,
UzyTavOpcionInstitucionMapper
mapper
)
{
this
.
daoUzyTavOpcionInstitucion
=
daoUzyTavOpcionInstitucion
;
this
.
mapper
=
mapper
;
}
@Override
public
ModelUzyTavOpcionInstitucion
ListarPorID
(
Long
id
)
{
return
daoUzyTavOpcionInstitucion
.
findById
(
id
).
get
();
public
DtoUzyTavOpcionInstitucion
ListarPorID
(
Long
id
)
{
ModelUzyTavOpcionInstitucion
entity
=
daoUzyTavOpcionInstitucion
.
findById
(
id
)
.
orElseThrow
(()
->
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
));
return
mapper
.
entityToDto
(
entity
);
}
@Override
public
List
<
ModelUzyTavOpcionInstitucion
>
ListarRegistros
()
{
return
daoUzyTavOpcionInstitucion
.
findAll
();
public
List
<
DtoUzyTavOpcionInstitucion
>
ListarRegistros
()
{
List
<
ModelUzyTavOpcionInstitucion
>
entities
=
daoUzyTavOpcionInstitucion
.
findAll
();
return
entities
.
stream
()
.
map
(
mapper:
:
entityToDto
)
.
collect
(
Collectors
.
toList
());
}
@Override
public
ModelUzyTavOpcionInstitucion
guardar
(
ModelUzyTavOpcionInstitucion
modelUzyTavOpcionInstitucion
)
{
return
daoUzyTavOpcionInstitucion
.
save
(
modelUzyTavOpcionInstitucion
);
public
DtoUzyTavOpcionInstitucion
guardar
(
DtoUzyTavOpcionInstitucion
dtoUzyTavOpcionInstitucion
)
{
ModelUzyTavOpcionInstitucion
entity
=
mapper
.
dtoToEntity
(
dtoUzyTavOpcionInstitucion
);
ModelUzyTavOpcionInstitucion
nuevoEntity
=
daoUzyTavOpcionInstitucion
.
save
(
entity
);
return
mapper
.
entityToDto
(
nuevoEntity
);
}
@Override
public
ModelUzyTavOpcionInstitucion
editar
(
Long
id
,
ModelUzyTavOpcionInstitucion
modelUzyTavOpcionInstitucion
)
{
ModelUzyTavOpcionInstitucion
dato
=
daoUzyTavOpcionInstitucion
.
findById
(
id
).
get
();
//.orElseThrow(()->new ControlExcepciones("No existe el registro con el ID : " + id));
//Seteamos los nuevos datos del registro
dato
.
setUzytavopcion_institucion_id
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucion_id
());
dato
.
setUzytavopcion_institucionorden
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionorden
());
dato
.
setUzytavopcion_institucionnombre
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionnombre
());
dato
.
setUzytavopcion_institucionfecha_crea
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionfecha_crea
());
dato
.
setUzytavopcion_instituciondireccion
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_instituciondireccion
());
dato
.
setUzytavopcion_institucionciudad
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionciudad
());
dato
.
setUzytavopcion_instituciontelefono
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_instituciontelefono
());
dato
.
setUzytavopcion_institucionpaguina_web
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionpaguina_web
());
dato
.
setUzytavopcion_institucionmail
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionmail
());
dato
.
setUzytavopcion_institucionfax
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionfax
());
dato
.
setUzytavopcion_institucionrepresenta_legal
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionrepresenta_legal
());
dato
.
setUzytavopcion_institucioncedula_rl
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucioncedula_rl
());
dato
.
setUzytavopcion_institucionorgano_ejecutor
(
modelUzyTavOpcionInstitucion
.
getUzytavopcion_institucionorgano_ejecutor
());
ModelUzyTavOpcionInstitucion
datoActualizado
=
daoUzyTavOpcionInstitucion
.
save
(
dato
);
return
datoActualizado
;
public
DtoUzyTavOpcionInstitucion
editar
(
Long
id
,
DtoUzyTavOpcionInstitucion
dtoUzyTavOpcionInstitucion
)
{
try
{
ModelUzyTavOpcionInstitucion
dato
=
daoUzyTavOpcionInstitucion
.
findById
(
id
).
get
();
if
(
dato
!=
null
)
{
dato
.
setUzytavopcion_institucion_id
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucion_id
());
dato
.
setUzytavopcion_institucionorden
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionorden
());
dato
.
setUzytavopcion_institucionnombre
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionnombre
());
dato
.
setUzytavopcion_institucionfecha_crea
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionfecha_crea
());
dato
.
setUzytavopcion_instituciondireccion
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_instituciondireccion
());
dato
.
setUzytavopcion_institucionciudad
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionciudad
());
dato
.
setUzytavopcion_instituciontelefono
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_instituciontelefono
());
dato
.
setUzytavopcion_institucionpaguina_web
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionpaguina_web
());
dato
.
setUzytavopcion_institucionmail
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionmail
());
dato
.
setUzytavopcion_institucionfax
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionfax
());
dato
.
setUzytavopcion_institucionrepresenta_legal
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionrepresenta_legal
());
dato
.
setUzytavopcion_institucioncedula_rl
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucioncedula_rl
());
dato
.
setUzytavopcion_institucionorgano_ejecutor
(
dtoUzyTavOpcionInstitucion
.
getUzytavopcion_institucionorgano_ejecutor
());
ModelUzyTavOpcionInstitucion
updatedEntity
=
daoUzyTavOpcionInstitucion
.
save
(
dato
);
return
mapper
.
entityToDto
(
updatedEntity
);
}
else
{
throw
new
ResourceNotFoundException
(
"No se encontró el registro con ID: "
+
id
);
}
}
catch
(
Exception
e
)
{
throw
new
ResourceNotFoundException
(
"Error al editar el registro: "
+
e
.
getMessage
());
}
}
@Override
public
void
eliminar
(
Long
id
)
{
ModelUzyTavOpcionInstitucion
dato
=
daoUzyTavOpcionInstitucion
.
findById
(
id
).
get
();
//.orElseThrow(() -> new ControlExcepciones("No existe el registro con el ID : " + id));
daoUzyTavOpcionInstitucion
.
delete
(
dato
);
}
}
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