|
@@ -12,7 +12,7 @@
|
12
|
12
|
* `@PostConstruct`
|
13
|
13
|
* `@Config`
|
14
|
14
|
* `@SpringBootTest`
|
15
|
|
- * `@Resource`
|
|
15
|
+ * `@Qualifier`
|
16
|
16
|
|
17
|
17
|
|
18
|
18
|
## Developmental Notes
|
|
@@ -112,6 +112,7 @@
|
112
|
112
|
## Part 9.0 - Creating `Configuration` classes
|
113
|
113
|
* Each of the following `Config` classes should have a class-signature annotation of `@Configuration`
|
114
|
114
|
* this annotation tells spring to scan for `@Bean` definitions within the scope of the class, and register them to the [IOC Container](https://www.tutorialspoint.com/spring/spring_ioc_containers.htm) for `Inject` and `Autowire` use later.
|
|
115
|
+* **Tip:** if testing fails, begin researching and attempting to use the `@Qualifier` annotation.
|
115
|
116
|
|
116
|
117
|
-
|
117
|
118
|
### Part 9.1 - Create `StudentConfig`
|