通过Angular.post发布数据,并通过Servlet将其检索为JSON

时间:2018-11-26 00:34:15

标签: java json angular post servlets

我有一个这样的界面:

export interface Product {
    product: string;
    quantity: number;
    status: string;
}

我发布了一个数组,其中填充了以下接口类型的数据:

  sendDatas(productsArray:Product[])
  {
    const header: HttpHeaders = new HttpHeaders({'Content-Type':  'application/json'});
    const options = {headers : header};
    this.http.post<any>("/ssservice", JSON.stringify(productsArray), options).subscribe();
  }

我想在Servlet中以JSON的方式检索以Angular发送的数据(我虽然使用GSON库),但最终知道这是否不是太多 最终将其转换为List<List<Object>>类型

public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
   WhichTypeToUse? JSONvalue = request.iDontKnowWhatMethodToUseToGrabValues();
   List<List<Object>> convertedValues = HowCanIconvertTheValues(JSONvalue)
}

我该如何实现?任何帮助都将不胜感激。

0 个答案:

没有答案