Skip to content
Advertisement

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?

Advertisement

Answer

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

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement