瀏覽代碼

Update README.md

Git-Leon 6 年之前
父節點
當前提交
94df769e49
沒有帳戶連結到提交者的電子郵件
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      README.md

+ 2
- 1
README.md 查看文件

@@ -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`