'What "no code generation“ in Spring Boot means

Spring Boot doc states "Absolutely no code generation and no requirement for XML configuration."

What is "code generation" in that context?



Solution 1:[1]

It states that Spring Boot doesn't generate or edit code

Spring Boot does not generate code or make edits to your files. Instead, when you start your application, Spring Boot dynamically wires up beans and settings and applies them to your application context.

It means no extra code is generated and executed except your code and spring boot dependencies you added

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user7294900