Is dit jouw bedrijf?
What does @SpringBootApplication do? Could you explain it?
Anoniem
It’s a combination of three annotations: @Configuration — marks the class as a configuration source. @EnableAutoConfiguration — enables Spring Boot’s auto-configuration feature. @ComponentScan — scans components in the current package and subpackages.