Voy a seguir el guión maravilloso de Alex para hablar sobre los distintos problemas que podemos encontrarnos en las distintas capas TCP/IP y como podría tratar de solventarlas desde un punto de vista de un miembro del equipo blue team. Es un trabajo en progreso, esta va a ser una entrada larga. Comentar que, como…
Clean Code y spring-boot en Español
Este escrito está basado en el trabajo de Gozde Saygili Yalcin. Su trabajo original está genial y me gustaría añadir algunas cosas que creo son relevantes en los ejemplos, como la gestión personalizada de excepciones mediante aspectos, junto con la traducción al español. Muchas gracias Gozde. Voy a hablar sobre los principios SOLID poniendo énfasis…
Solid principles with spring-boot.
https://medium.com/@saygiligozde/applying-solid-principles-to-spring-boot-applications-191d7e50e1b3 Applying SOLID Principles to Spring Boot Applicationshttps://medium.com/@saygiligozde/applying-solid-principles-to-spring-boot-applications-191d7e50e1b3 This sample is so perfect that i just want to post it here to remember it forever. thanks to the original author, not me.
Santander y Spring-boot.
Algunas preguntas que me hizo Banco Santander para un proyecto que no me ofrecieron hace un año o así.
SpringBoot and Banco Santander. Interview.
Some questions that Banco Santander made me some time ago.
About a demo with a kafka consumer and elastic search using spring-boot
Good afternoon, I share with you the second part of the previous article, a demo where I show how to use a kafka consumer connected to a scalable instance of an elasticsearch server. This is the link of the GitHub project. Download it and run the next command: docker-compose up This command will run a…
About a simple spring quartz app
I have uploaded a container with a micro service in dockerhub, the first one, you always have to start with one 🙂 . It's a microservice or more like a dumb test service that is in charge of consuming periodically, every 5 seconds, an api with the current bitcoin quote, the json is saved in an…
About how to set up context path in a spring-boot application
It's been a while since I've written anything, for lack of time, but I think it's necessary to remind myself that you can configure the context path of a web application in a very simple way when you build the application. java -jar app.jar --server.servlet.context-path=/my-custom-context-path There are more ways to do this programmatically or via…