this is my angularjs code
$scope.createOrderObject.orderItemObjs=JSON.stringify($scope.createOrderObject.orderItemObjs);
$scope.createOrderObject
is an array, this contain more than 3 array. when i add upto 5 products this is working super fine but when i try to add 6th item it showing 400 error.
$http({
method: "POST",
url: baseUrl + "/Order/saveOrUpdateOrders",
params: $scope.createOrderObject,
headers: {
'Content-Type': 'application/json',
}
Post url is becoming very big about 5000 char after that browser telling this request as malform url.
i receive this request in servlet like this
@RequestMapping(value = "/Order/saveOrUpdateOrders", method =RequestMethod.POST)
public void saveOrUpdateOrders(OrdersFormObj orderFormObj, HttpServletResponse response, HttpServletRequest request) throws IOException {
try {
String addCity = request.getParameter("addCity");
String addDist = request.getParameter("addDist");
String orderItemObjs = request.getParameter("orderItemObjs");
this is one is
String orderItemObjs = request.getParameter("orderItemObjs");
Stringfy array
Really i dont know what is the problem. i suspect url length but i dont know how to fix this. please help to get rid off this
This seems to be a problem with length of your params in POST request. Do read below
What is the maximum length of a URL in different browsers?
So, I would say you use some other mechanism to send your data to server.
Instead of
params
, you should usedata
like below