InterviewSolution
Saved Bookmarks
| 1. |
How do you turn on annotation wiring? |
|
Answer» Annotation wiring is not turned on in the Spring container by default. So, before we can use annotation-based wiring, we will need to enable it in our Spring configuration file by configuring <context:annotation-config/>. |
|