https://www.youtube.com/watch?v=Qs57dO47Enc
viernes, 9 de octubre de 2020
lunes, 7 de septiembre de 2020
Cursos de Prestashop 1.7 en Youtube
https://www.youtube.com/watch?v=Xav35c6GnlE&list=PLkfVWczuEdpO2xdyjKyVqUPAX7HaDQdCI
https://www.youtube.com/watch?v=sEwum1ACSag&list=PL0-IJh0LAbBfBhVg4D_IlOrw_gFpRunFD
miércoles, 2 de septiembre de 2020
Curso de Arduino desde cero en Youtube
https://www.youtube.com/playlist?list=PLkjnQ3NFTPnY1eNyLDGi547gkVui1vyn2
jueves, 16 de julio de 2020
Cursos Google Docs y Google Sheets 2020
Google Docs: https://www.youtube.com/watch?v=2ZHf9JrG-sE&list=PLG1qdjD__qH4sftbDnm383KqPDpn9u0Rt
Google Sheets: https://www.youtube.com/watch?v=Z2VMC7p5J2Q&list=PLG1qdjD__qH7elIRiQoqRdY0ZzThfLnxn
Google Sheets: https://www.youtube.com/watch?v=Z2VMC7p5J2Q&list=PLG1qdjD__qH7elIRiQoqRdY0ZzThfLnxn
viernes, 10 de julio de 2020
Tutorial API REST con Java (JAX-RS) (sin Maven ni Spring Boot)
https://www.oscarblancarteblog.com/api-rest-java-jax-rs/
Para responder con JSON:
@GET
@Path("/json")
public Response getJsonResponse() {
Person person = new Person("Abhinayak", "Nepal");
return Response
.status(Response.Status.OK)
.entity(person)
.type(MediaType.APPLICATION_JSON)
.build();
}
Para responder con JSON:
@GET
@Path("/json")
public Response getJsonResponse() {
Person person = new Person("Abhinayak", "Nepal");
return Response
.status(Response.Status.OK)
.entity(person)
.type(MediaType.APPLICATION_JSON)
.build();
}
Suscribirse a:
Entradas (Atom)