Auto-configuration is used to configure Spring application automatically based on dependencies of classpath parameter. It makes development faster and easier.
这有帮助吗?
添加评论查看评论
问题 42. How to enable logging in Spring Boot?
In order to enable debug logging, you can specify --debug while starting the application from the command prompt.
这有帮助吗?
添加评论查看评论
问题 43. Explain overriding default properties in Spring Boot application.
Spring Boot has lots of properties that can be easily overridden by specifying them in application.properties.
这有帮助吗?
添加评论查看评论
问题 44. How to handle exception in Spring Boot.
Spring Boot provides a very useful way to handle exceptions using @ControllerAdvice annotation.
这有帮助吗?
添加评论查看评论
问题 45. What is mean by spring batch?
Spring Boot Batch provides code reusability which is important when working with large numbers of records, including transaction management, logging, skipping, job processing statistics, and job restarts.