|
|
|
|
46
|
* Square's OKHttp https://github.com/square/okhttp
|
46
|
* Square's OKHttp https://github.com/square/okhttp
|
47
|
|
47
|
|
48
|
Be prepared to defend your choice if which HTTP client library you chose, with reasons why you chose it.
|
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
|
* jackson json https://github.com/FasterXML/jackson
|
55
|
* jackson json https://github.com/FasterXML/jackson
|
54
|
|
56
|
|