Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
slam4:gui:rest [2015/03/15 19:53] – [3.1- GET] jcheron | slam4:gui:rest [2019/08/31 14:21] (Version actuelle) – modification externe 127.0.0.1 | ||
---|---|---|---|
Ligne 142: | Ligne 142: | ||
===== -- Http requests ===== | ===== -- Http requests ===== | ||
+ | Pour mettre en oeuvre les tests, vous devez disposer d'un serveur HTTP hébergeant un service Rest. | ||
==== -- GET ==== | ==== -- GET ==== | ||
- | Créer une classe TestHttp : | + | Créer une classe TestHttp, instanciant un objet Gson qui nous servira pour les conversions JSON< |
- | <sxh java title: | + | <sxh java;title: |
public class TestHttp { | public class TestHttp { | ||
private Gson gson; | private Gson gson; | ||
Ligne 155: | Ligne 156: | ||
.create(); | .create(); | ||
} | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | Implémmenter la méthode getHttp : | ||
+ | <sxh java; | ||
+ | ... | ||
public String getHTML(String urlToRead) throws ClientProtocolException, | public String getHTML(String urlToRead) throws ClientProtocolException, | ||
String result=""; | String result=""; | ||
Ligne 167: | Ligne 175: | ||
return result; | return result; | ||
} | } | ||
- | } | + | ... |
+ | </ | ||
+ | |||
+ | Ajouter la méthode **main** dans la classe pour tester le Get, n' | ||
+ | |||
+ | <sxh java; | ||
+ | ... | ||
+ | public static void main(String args[]) { | ||
+ | TestHttp test = new TestHttp(); | ||
+ | |||
+ | try { | ||
+ | String result = test.getHTML(" | ||
+ | System.out.println(result); | ||
+ | |||
+ | } catch (IOException e) { | ||
+ | e.printStackTrace(); | ||
+ | } | ||
+ | } | ||
+ | ... | ||
</ | </ | ||
==== -- POST ==== | ==== -- POST ==== | ||
+ | Implémmenter la méthode restPostJSON : | ||
+ | <sxh java; | ||
+ | ... | ||
+ | public String restPostJSON(String urlToRead, Object o) throws ClientProtocolException, | ||
+ | String result = ""; | ||
+ | CloseableHttpClient httpClient = HttpClients.createDefault(); | ||
+ | try { | ||
+ | HttpPost postRequest = new HttpPost(urlToRead); | ||
+ | postRequest.setHeader(" | ||
+ | postRequest.setHeader(" | ||
+ | String jsonString = gson.toJson(o); | ||
+ | StringEntity params = new StringEntity(jsonString); | ||
+ | params.setContentType(" | ||
+ | params.setContentEncoding(" | ||
+ | postRequest.setEntity(params); | ||
+ | ResponseHandler< | ||
+ | result = httpClient.execute(postRequest, | ||
+ | } finally { | ||
+ | httpClient.close(); | ||
+ | } | ||
+ | return result; | ||
+ | } | ||
+ | ... | ||
+ | </ | ||
+ | Modifier la méthode **main** de la classe pour tester le restPostJSON : | ||
+ | <sxh java; | ||
+ | ... | ||
+ | public static void main(String args[]) { | ||
+ | TestHttp test = new TestHttp(); | ||
+ | |||
+ | try { | ||
+ | ... | ||
+ | System.out.println(test.restPostJSON( | ||
+ | " | ||
+ | |||
+ | } catch (IOException e) { | ||
+ | e.printStackTrace(); | ||
+ | } | ||
+ | } | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ===== -- POST Classique ===== | ||
+ | |||
+ | Le post classique est légèrement plus complexe, puisqu' | ||
+ | * La conversion en JsonObject de l' | ||
+ | * L' | ||
+ | * La définition du content-type de la requête : **" | ||
+ | |||
+ | |||
+ | Implémmenter la méthode postJSON : | ||
+ | <sxh java; | ||
+ | ... | ||
+ | public String postJSON(String urlToRead, Object o) | ||
+ | throws ClientProtocolException, | ||
+ | String result = ""; | ||
+ | CloseableHttpClient httpClient = HttpClients.createDefault(); | ||
+ | try { | ||
+ | HttpPost postRequest = new HttpPost(urlToRead); | ||
+ | postRequest.setHeader(" | ||
+ | List< | ||
+ | |||
+ | JsonElement elm = gson.toJsonTree(o); | ||
+ | JsonObject jsonObj = elm.getAsJsonObject(); | ||
+ | for (Map.Entry< | ||
+ | nameValuePairs.add(new BasicNameValuePair(entry.getKey(), | ||
+ | .getValue().getAsString())); | ||
+ | } | ||
+ | postRequest.setEntity(new UrlEncodedFormEntity(nameValuePairs)); | ||
+ | ResponseHandler< | ||
+ | result = httpClient.execute(postRequest, | ||
+ | } finally { | ||
+ | httpClient.close(); | ||
+ | ; | ||
+ | } | ||
+ | return result; | ||
+ | } | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | Modifier la méthode **main** de la classe pour tester le POST classique, il s'agit ici d'un exemple avec une classe User : | ||
+ | |||
+ | <sxh java; | ||
+ | ... | ||
+ | public static void main(String args[]) { | ||
+ | TestHttp test = new TestHttp(); | ||
+ | |||
+ | try { | ||
+ | String result = test.getHTML(" | ||
+ | System.out.println(result); | ||
+ | |||
+ | System.out.println(test.postJSON( | ||
+ | " | ||
+ | " | ||
+ | |||
+ | } catch (IOException e) { | ||
+ | e.printStackTrace(); | ||
+ | } | ||
+ | } | ||
+ | ... | ||
+ | </ | ||
+ | |||
+ | ===== -- Session ===== | ||
+ | |||
+ | Pour conserver la session, on instancie un HttpContext, | ||
+ | |||
+ | |||
+ | <sxh java> | ||
+ | |||
+ | private HttpContext httpContext; | ||
+ | private CloseableHttpClient httpClient; | ||
+ | private CookieStore cookieStore; | ||
+ | |||
+ | protected void createCookieStore() { | ||
+ | httpClient = HttpClients.createDefault(); | ||
+ | cookieStore = new BasicCookieStore(); | ||
+ | httpContext = new BasicHttpContext(); | ||
+ | httpContext.setAttribute(HttpClientContext.COOKIE_STORE, | ||
+ | } | ||
+ | |||
+ | public TestHttp() { | ||
+ | gson = new GsonBuilder().setDateFormat(" | ||
+ | createCookieStore(); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Utilisation et passage du HttpContext : | ||
+ | <sxh java> | ||
+ | result = httpClient.execute(getRequest, | ||
+ | ... | ||
+ | result = httpClient.execute(postRequest, | ||
+ | |||
+ | </ |