Home > Blockchain >  What "no code generation“ in Spring Boot means
What "no code generation“ in Spring Boot means

Time:03-27

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

What is "code generation" in that context?

CodePudding user response:

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

  • Related