21 articles

📰 Dev.to · Willian Ferreira Moya

Articles from Dev.to · Willian Ferreira Moya · 21 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (11414) ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog
Spring Framework Essentials: Understanding @ComponentScan
Dev.to · Willian Ferreira Moya 11mo ago
Spring Framework Essentials: Understanding @ComponentScan
@ComponentScan is an annotation that tells Spring where to find classes annotated as Spring beans....
How to Use Spring's @Profile Annotation for Flexible Configurations
Dev.to · Willian Ferreira Moya 12mo ago
How to Use Spring's @Profile Annotation for Flexible Configurations
The @Profile annotation in Spring allows you to segregate configurations to be available only in...
What is @Component and How to Use It in Spring
Dev.to · Willian Ferreira Moya 1y ago
What is @Component and How to Use It in Spring
What is @Component? @Component is a stereotype annotation from the Spring framework that...
How to Use the @Import Annotation in Spring Framework
Dev.to · Willian Ferreira Moya 1y ago
How to Use the @Import Annotation in Spring Framework
The @Import annotation allows you to specify which configurations your Spring application should...
Method security with @Secured Annotation in Spring
Dev.to · Willian Ferreira Moya 1y ago
Method security with @Secured Annotation in Spring
This annotation provides a way to add security configuration to business methods. It will use roles...
Using the @Lookup Annotation in Spring
Dev.to · Willian Ferreira Moya 1y ago
Using the @Lookup Annotation in Spring
The @Lookup annotation is an injection (like @Inject, @Resource, @Autowired) annotation used at the...
@Resource: The Versatile Bean Injection Annotation for Jakarta EE and Spring
Dev.to · Willian Ferreira Moya 1y ago
@Resource: The Versatile Bean Injection Annotation for Jakarta EE and Spring
This annotation does bean injection, like the @Autowired and @Inject annotations. This annotation...
Understanding the @DependsOn Annotation in Spring
Dev.to · Willian Ferreira Moya 1y ago
Understanding the @DependsOn Annotation in Spring
Introduction to the @DependsOn Annotation This annotation tells Spring that the bean...
Understanding @Primary in Spring
Dev.to · Willian Ferreira Moya 1y ago
Understanding @Primary in Spring
If you read my post about the @Qualifier annotation, you have noticed that defining two beans of the...
How @AliasFor Simplifies Annotations usage in Spring
Dev.to · Willian Ferreira Moya 1y ago
How @AliasFor Simplifies Annotations usage in Spring
This annotation is an annotation that allows you to create an alias for an attribute in an...
3 Ways to Use the @Lazy Annotation in Spring
Dev.to · Willian Ferreira Moya 1y ago
3 Ways to Use the @Lazy Annotation in Spring
Does your Spring application take too long to start? Maybe this annotation could help you. This...
Understanding @Autowired in Spring: A Comprehensive Guide
Dev.to · Willian Ferreira Moya 1y ago
Understanding @Autowired in Spring: A Comprehensive Guide
Introduction The @Autowired annotation is one of the most common annotations when working...
Understanding Spring's @Required Annotation: A Legacy Perspective
Dev.to · Willian Ferreira Moya 1y ago
Understanding Spring's @Required Annotation: A Legacy Perspective
While the @Required annotation has been deprecated since Spring Framework 5, it's not uncommon to...
12 Ways to Use the @Value Annotation in Spring for Flexible and Maintainable Applications
Dev.to · Willian Ferreira Moya 1y ago
12 Ways to Use the @Value Annotation in Spring for Flexible and Maintainable Applications
You may already be familiar with @Value annotation from Spring. This annotation allows you to inject...
Understanding Spring Annotations: A Comprehensive Overview
Dev.to · Willian Ferreira Moya 1y ago
Understanding Spring Annotations: A Comprehensive Overview
Introduction Working with Spring implies using lots of annotations to configure your...
Simplifying Dependency Management with Spring IoC
Dev.to · Willian Ferreira Moya 1y ago
Simplifying Dependency Management with Spring IoC
Introduction Imagine writing an application where you have to create and manage...
Optimizing Spring Integration Tests: 7 Annotations That May Be Slowing You Down
Dev.to · Willian Ferreira Moya 2y ago
Optimizing Spring Integration Tests: 7 Annotations That May Be Slowing You Down
Introduction: We all know that Integration tests are not the fastest to run, they surely...