InterviewSolution
Saved Bookmarks
| 1. |
Can you tell how to exclude any package without using the basePackages filter? |
|
Answer» We can use the exclude attribute while USING the ANNOTATION @SpringBootApplication as follows: @SpringBootApplication(exclude= {Student.CLASS})PUBLIC class InterviewBitAppConfiguration {} |
|