Month: March 2024
How to create a Custom Annotation in Quarkus Framework?
- Natan Ferreira
- 0
- 493
It’s important to perform validations in the system. There are dependencies available for this with a lot of ready-made solutions. For example, in the case of Quarkus, we can use Hibernate Validator, which provides us with some annotations to solve common problems. However, if it’s necessary to perform a validation for which there is no…
Read MoreWhat is Data Binding in Angular?
- Natan Ferreira
- 0
- 49
It’s a way of communication between TypeScript code and HTML template. Let’s see an example below. I created a component called “user”. We have a variable that stores the value of the “username” and a method that resets this value, it’s a method triggered by a click event in the HTML template. In the HTML…
Read More