The article presents code samples that one could use to quickly get started with posting JSON data using AngularJS $http service while working with SpringMVC web application. The demo for the code below could be found on this page, http://hello-angularjs.appspot.com/angularjs-http-service-ajax-post-json-data-code-example. Earlier, I posted this article where one could post the html data (text/html) using AJAX & SpringMVC.
Following are key steps:
Following are key steps:
@RequestMapping(value = "/angularjs-http-service-ajax-post-json-data-code-example", method = RequestMethod.GET) public ModelAndView httpServicePostJSONDataExample( ModelMap model ) { return new ModelAndView("httpservice_post_json"); }
@RequestMapping(value = "/savecompany_json", method = RequestMethod.POST) public @ResponseBody String saveCompany_JSON( @RequestBody Company company ) { // // Code processing the input parameters // return "JSON: The company name: " + company.getName() + ", Employees count: " + company.getEmployees() + ", Headoffice: " + company.getHeadoffice(); }
package com.vitalflux.core; public class Company { private String name; private long employees; private String headoffice; public String getName() { return name; } public void setName(String name) { this.name = name; } public Long getEmployees() { return employees; } public void setEmployees(Long employees) { this.employees = employees; } public String getHeadoffice() { return headoffice; } public void setHeadoffice(String headoffice) { this.headoffice = headoffice; } }
Following code could be used to post JSON data to the server. Following assumes that you shall be creating the ng-app with name as “helloAjaxApp”.
var helloAjaxApp = angular.module("helloAjaxApp", []); helloAjaxApp.controller("CompaniesCtrl", ['$scope', '$http', function($scope, $http) { $scope.companies = [ { 'name':'Infosys Technologies', 'employees': 125000, 'headoffice': 'Bangalore'}, { 'name':'Cognizant Technologies', 'employees': 100000, 'headoffice': 'Bangalore'}, { 'name':'Wipro', 'employees': 115000, 'headoffice': 'Bangalore'}, { 'name':'Tata Consultancy Services (TCS)', 'employees': 150000, 'headoffice': 'Bangalore'}, ]; $scope.addRowAsyncAsJSON = function(){ $scope.companies.push({ 'name':$scope.name, 'employees': $scope.employees, 'headoffice':$scope.headoffice }); // Writing it to the server // var dataObj = { name : $scope.name, employees : $scope.employees, headoffice : $scope.headoffice }; var res = $http.post('/savecompany_json', dataObj); res.success(function(data, status, headers, config) { $scope.message = data; }); res.error(function(data, status, headers, config) { alert( "failure message: " + JSON.stringify({data: data})); }); // Making the fields empty // $scope.name=''; $scope.employees=''; $scope.headoffice=''; }; }]);
Following is the view code that represents the call to the method, addRowAsyncAsJSON, to post the JSON data:
<form class="form-horizontal" role="form" ng-submit="addRowAsyncAsJSON()"> <div class="form-group"> <label class="col-md-2 control-label">Name</label> <div class="col-md-4"> <input type="text" class="form-control" name="name" ng-model="name" /> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Employees</label> <div class="col-md-4"> <input type="text" class="form-control" name="employees" ng-model="employees" /> </div> </div> <div class="form-group"> <label class="col-md-2 control-label">Headoffice</label> <div class="col-md-4"> <input type="text" class="form-control" name="headoffice" ng-model="headoffice" /> </div> </div> <div class="form-group"> <div style="padding-left:110px"> <input type="submit" value="Submit" class="btn btn-primary"/> </div> </div> </form>
Artificial Intelligence (AI) agents have started becoming an integral part of our lives. Imagine asking…
In the ever-evolving landscape of agentic AI workflows and applications, understanding and leveraging design patterns…
In this blog, I aim to provide a comprehensive list of valuable resources for learning…
Have you ever wondered how systems determine whether to grant or deny access, and how…
What revolutionary technologies and industries will define the future of business in 2025? As we…
For data scientists and machine learning researchers, 2024 has been a landmark year in AI…
View Comments
Great post sir, But Can you please tell what is the use of push $scope.companies.push()