The SOLID Principle in internet lingo
The SOLID principle is one of the most common acronym to describe the principles of object-oriented programming, which is subset of the many principles intro...
The SOLID principle is one of the most common acronym to describe the principles of object-oriented programming, which is subset of the many principles intro...
Use getById() if you just want to get a reference of the entity, like assigning it to a property of another entity. Use findById() if you actually want to g...
A little discovery I found recently. My error messages are not showing as intended. @PostMapping @ResponseStatus(HttpStatus.CREATED) fun createAccount(@Requ...
When working in a team, someone will be using windows, while some will be on mac. Usually, it won’t be an issue, but windows and mac/linux has a different wa...
Sometimes it can be pretty frustrating when the error message doesn’t show the root cause of the problem, usually that’s because it is not straightforward wh...