Browse Source

Update README.md

Git-Leon 6 years ago
parent
commit
94df769e49
No account linked to committer's email
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      README.md

+ 2
- 1
README.md View File

12
 		* `@PostConstruct`
12
 		* `@PostConstruct`
13
 		* `@Config`
13
 		* `@Config`
14
 		* `@SpringBootTest`
14
 		* `@SpringBootTest`
15
-		* `@Resource`
15
+		* `@Qualifier`
16
 
16
 
17
 
17
 
18
 ## Developmental Notes
18
 ## Developmental Notes
112
 ## Part 9.0 - Creating `Configuration` classes
112
 ## Part 9.0 - Creating `Configuration` classes
113
 * Each of the following `Config` classes should have a class-signature annotation of `@Configuration`
113
 * Each of the following `Config` classes should have a class-signature annotation of `@Configuration`
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.
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
 ### Part 9.1 - Create `StudentConfig`
118
 ### Part 9.1 - Create `StudentConfig`