September 28, 2020
This always has been my priority because… I don’t want to pay extra in ECR so… I have to create small docker images.
we need to list the classpath of all the libraries that we are going to use the follow command in maven ot save all of them in a file
mvn dependency:build-classpath -Dmdep.includeScope=runtime -Dmdep.outputFile=classpath
once we have all the libraries in a file… we need are going to put everything in a environment variable that way we can use it later on. To be able to do that… we need to run the following command
...
January 23, 2020
In this post we’re going to have different sections, in the first one, as in all beginner courses, we’re going to define Spring, learn how to create a project with Spring Boot and learn what the meaning of the basic class which Spring gives you when you start a project is.
What’s Spring?
#
If you stop someone on the street and ask them about it, they are going to tell you that Spring is a season of the year, but that’s not the meaning that we want. Spring in IT is an open source framework for Java Platforms which was created by Roderick “Rod” Johnson. This framework is lightweight because it has a modular philosophy, I mean if you have a base and you add the different modules when you need them or when the application is getting bigger. This framework is really popular because of it’s simplicity, loose coupling and testability.
...
January 23, 2020
The other day there were a few news articles about the new version of Java. I was thinking another one? Really? Like a lot of people in the beginning of their careers, no-one checks the differences between Java versions because they are focused on the projects which they are working on, or maybe it’s just me. But, I had a break between jobs so I decided to update all my knowledge and one thing from my list was this one, so I hope you find this information interesting. As everyone knows, Java has another JDK version which is the JDK 11.
...