- Core Spring
What is dependency injection? IoC is also known as dependency injection (DI). It is a process whereby objects define their dependencies (that is, the other objects they work with) only through constructor arguments, arguments to a factory method, or properties that are set on the object instance…
- Docker Guide
What is docker? Getting Started Download docker and install it on your computer Link to developer guide – https://docs.docker.com/ee/ Select the docker option based on your operation system. In my case, I selected Docker for desktop mac. Then from there should be a link to download the docker…
- Terminate process(PID) command
If you ever run multiple java projects (microservices) on eclipse. Most of the time you want to start them up all at the same time and luckily eclipse has this feature. Unfortunately what Eclipse doesn’t have is a way to stop or kill all of you java projects(processes) all at the same time. This […]
- MySQL View
Views are virtual tables what consist of columns and rows from real tables within a database. Views don’t contain the data they display. Views are practically for read-only but some databases allow updating on views. Here is how you create a view. You can just JOINs if needed to generate your…
- Negotiating Salary
Few skills will impact your lifetime earnings as a software engineer more than knowing how to negotiate your salary. A single negotiation can mean tens of thousands of dollars per year — and that compounds over your career. Yet most developers accept the first offer they receive, leaving…