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/>. 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/>. |
|