瀏覽代碼

Update README.md

KrYounger 6 年之前
父節點
當前提交
bd1fca498e
沒有帳戶連結到提交者的電子郵件
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4
    2
      README.md

+ 4
- 2
README.md 查看文件

@@ -46,9 +46,11 @@ HttpURLConnection https://docs.oracle.com/javase/8/docs/api/java/net/HttpURLConn
46 46
 * Square's OKHttp https://github.com/square/okhttp
47 47
 
48 48
 Be prepared to defend your choice if which HTTP client library you chose, with reasons why you chose it.
49
-You should also create some unit tests for your REST API handlers.
49
+You should also create some unit tests for your REST API handlers. You should look at how ItelliJ does management of
50
+dependencies. (You'll be modifying the `pom.xml` file.) Usually, you merely need to add a `dependency` clause to the `dependencies`
51
+clause in the pom.xml. 
50 52
 
51
-It's possible you may also need to understand some of what the Jackson package does for you. 
53
+It's possible you may also need to understand some of what the Jackson package does for you. `jackson` will also need to be inserted into the `pom.xml` file, with a dependency clause.
52 54
 
53 55
 * jackson json https://github.com/FasterXML/jackson
54 56