0
votes
0answers
18 views

Ajax post using JQuery in Spring webflow project

I am working on a spring webflow project what was using Spring.AjexEventDecoration but the firm is requesting for it all to be remove and to use JQuery for the java-script part. I had the following ...
0
votes
2answers
68 views

AJAX fetching data from Spring-MVC Controller

My Controller: @RequestMapping(value = "jobs") public void removeJobs(@RequestParam("username") String username, Model model) { String []jobs = jobsFetcher(username); ...
1
vote
1answer
71 views

Spring Controller w/ AJAX 404

I'm trying to set up my Tomcat server to handle AJAX requests with a Spring Controller, however I am getting 404 errors when the AJAX request is sent. I'm using IntelliJ with Maven, and ultimately ...
1
vote
1answer
123 views

Spring 3 AJAX POST request with @RequestBody and @ModelAttribute and @SessionAttribute used together?

Have a Java spring MVC web app, and am making a jquery ajax post request. My Controller is setup to receive and send json data. Everything works, the JSON string is well formatted, and the Controller ...
0
votes
1answer
54 views

how to call a method in controller onclick of a button and pass a variable to the same method in controller?

I am trying to call a method in my controller onclick of a button and pass a variable to the same method, am doing this with ajax like this <c:url var="searchUrl" ...
0
votes
0answers
29 views

How to process request and do not return anything in spring

I am sending ajax request to spring controller from dialog box. The request is processed correctly, but after that dialog box is get closed and page is redirected to the url send in request. I tried ...
0
votes
1answer
38 views

Added new items dynamycally with ajax

I have a piece of html code using Thymeleaf: <form id="form" action="/create" th:action="@{/create}" th:object="${form}"> <input type="text" th:field="*{title}"/> <div ...
0
votes
1answer
62 views

Spring mvc sending put using ajax

I am trying to send put to controller using ajax. here is my code: $().ready(function(){ $('#submit').click(function(){ var toUrl = '/users/' + $('#id').val() + '/profile'; ...
2
votes
1answer
78 views

How to populate entity object values on Spring Form using jquery/ajax?

I have the Spring form <form:form method="POST" action="/HelloWeb/addStudent" id="myForm"> <table> <tr> <td><form:label ...
5
votes
4answers
247 views

Spring: Ajax call to @ResponseBody param encoding fails in IE

I'm working with Spring and try to make a ajax call to @ResponseBody in my controller. UPDATE Okay, I added the changes I got told to to my ajax settings. My param "jtSearchParam" still has the same ...
2
votes
3answers
51 views

How to cancel previous actions in java spring mvc application

I am developing a spring MVC application. I ran into some interesting case. To make it easier to explain i am taking the stackover flow buttons on the top as example( i mean those questions, tags, ...
0
votes
2answers
394 views

Spring MVC @ResponseBody , JSON, JSP. Trying to Return List<Objects> from Controller to JSP

I need to retrieve List of JSON data objects from Spring MVC Controller class in order to display that inside JSP using Ajax. I have written Spring MVC Controller class which return the List of JSON ...
0
votes
1answer
21 views

Ajax calls not populating the text field

Two Ajax calls. They both execute the calls but the first one returns a drop down values in the text input field and the second one with extraParam fails to show the drop down with the matching values ...
0
votes
1answer
121 views

Making jQuery call to Spring Controller with additional param

On change in a text field the jQuery makes a call to Spring Controller. My question is how does this query sends the @RequestParam to the Controller method controller/find? How would I be able to ...
0
votes
0answers
73 views

Spring mvc, post method to load csv file to database

I have a question about import csv file. My friends write to me in ajax window to help me import csv file. He checks .csv and send to me by post metod file.When i click import file the browser show me ...
0
votes
0answers
63 views

JSON java.sql.SQLException: Positioned Update not supported

I'm trying to use JSON in Java Web. Transform List to JSONArray by invoking JSONArray.fromObject(), but thrown the exception as following: java.sql.SQLException: Positioned Update not supported. ...
0
votes
0answers
79 views

Web app based on spring mvc: External call for an ajax response

In a web app (based on spring mvc), we have plenty of ajax interactions. My need is to build an external url and send it into an email to a customer in order to be able to be redirected to the jsp ...
0
votes
1answer
271 views

ajax in the spring mvc + thymeleaf application

I'm playing around with spring mvc + thymeleaf. However I'd like to have integration with ajax (partial page rendering). Can you recommend me some sample code/tutorial to follow? I've only found ...
1
vote
1answer
87 views

how to do jquery form submit using Ajax?

In my java application I'm submitting the form using JQuery. Here is the code in my jsp: <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%> <%@ taglib prefix="c" ...
1
vote
1answer
250 views

406 Not Acceptable: Spring 3.2 + JSON + AJAX

Searched tons of sites and even stackoverflow but have not found a solution to this problem. Looks like lot of people have encountered this problem but its seems a unified solution is missing that ...
2
votes
2answers
156 views

spring longpolling example code?

I can find lots of information on how Long Polling works (For example, this, and this), but no simple examples of how to implement this in code. Basically, how would I use Apache Tomcat to serve the ...
0
votes
2answers
80 views

spring deferredresult

I am new to spring and want to implement long polling for a website to display admin message immediately when it becomes available to all clients,i searched google for hours and could only find out ...
0
votes
2answers
328 views

AJAX update for Spring <form:select> element

I'm using Spring MVC for a project. In it, on a particular page, I'm using the Spring form tags to display an ArrayList added to the model in the controller as below: <form:select ...
0
votes
1answer
57 views

unable to get Message from responseText

Spring controller: response.sendError(500, ErrorMessage.DataBaseInsertFailed); my .jsp page complete: function(e, xhr, settings){ var errorMessage = $.parseJSON(e.responseText); ...
0
votes
1answer
1k views

Origin url is not allowed by Access-Control-Allow-Origin

I know there are many questions already regarding this error. But, I'm still not able to get this working even after setting the header "Access-Control-Allow-Origin" : "*" ...
1
vote
1answer
482 views

Not able to use ajax in spring mvc form

I am trying to implement ajax based post in form in spring mvc. Here is my code: <form:form method="POST" commandName="emailDomain"> <form:textarea path="emailText" rows="5" ...
0
votes
1answer
53 views

Controller not getting invoked from Ajax URL?

Ajax Function below which should call the Controller class. Controller not getting invoked. Only 1st alert within generateExcel getting printed. function generateExcel(bIndex){ alert("Inside ...
0
votes
1answer
173 views

AJAX How To Access Map List JSON using Spring on JSP

I'm trying to populate comboboxes with list and list2 data using the follow code: $("#collectionPeriod").change( function(){ alert('collectionPeriodIndex === ' + ...
1
vote
0answers
207 views

Spring MVC and Ajax framework to use

I want to combine Spring MVC with AJAX capabilities in a Web application. I know that, for instance, DWR supports Spring by allowing you to expose Spring beans for remote invocation. Is there a more ...
0
votes
2answers
95 views

spring 3 not rendering model in jsp

I am a bit disapointed concerning Spring 3 not rendering my model in a jsp using Expression Language and I have to admit that I dont understand why. If anyone could help me understanting why I can't ...
4
votes
2answers
142 views

Getting different data in ajax response froms second time

I am encountering a problem which I am not able to find out why. I am using spring mvc and I am sending ajax request to one of my controller. $.get("<c:url value="/createcomment" />", ...
0
votes
1answer
101 views

Related selectboxes using ajax and spring mvc

I have problem with 2 dropdowns (second box options depends on first box currently selected option). What I have now is: controller: @Controller @RequestMapping(ADMINISTRATION) {...} ...
1
vote
1answer
277 views

Spring MVC not able to return JSONArray object Error 406

I am trying to return JSONArray object from my spring mvc controller. But I am getting 406 error on browser. This is an ajax request and I am using jquery to make the request. Spring controller ...
4
votes
1answer
148 views

Bad encoding when returning a string using Spring MVC & ajax

I have a web page that requests an hebrew string using Ajax but the string is returned as '??????' The weird thing is that when inserting that same string to the page using JSTL and not Ajax, it is ...
0
votes
1answer
206 views

Ajax not calling controller method

I am new to Ajax. i am trying to call my controller method but call from Ajax not invoking url i am given.. here my controller method and ajax call in my jsp file.. @RequestMapping(value = ...
0
votes
1answer
166 views

Handle Blob data via Ajax call in spring MVC

I need to handle Blob data via jquery Ajax call in spring MVC. I am working on banking application where i have web page in which I want to send ajax request to retive all the client details. But the ...
0
votes
1answer
40 views

application ajax time out

Controller: The code that handles post back has a db call in biz layer that is long running. After 30 minutes, the browser showed the error message from the ajax call, however my db logs showed that ...
0
votes
2answers
91 views

What I am supposed to return from a server-side method called by ajax?

I have the following jQuery script: $(document).ready(function() { $("#resendActivationEmailLink").bind("click", function(event) { $.get($(this).attr("href"), function() { ...
0
votes
3answers
659 views

Spring MVC + JQuery + Ajax Issue

I'm trying to make an Ajax call to my Spring MVC app using a Jquery Ajax. The app controllers are working fine but I can't get this Ajax test controller to work. The alert is triggered but the call to ...
0
votes
0answers
86 views

Ajax Call fails but server side returns data successful

I am calling a server side function through ajax $.ajax({ type:"GET", url: "/user/query/profileimg", success: function(response) { console.debug("pass"); ...
0
votes
1answer
188 views

How to Retrieve a spring controller's object in AJAX?

My AJAX call: var url = "UsersGroupReader.html?selectedCompanyName=" + selectedCompanyName + "&test="+Math.random(); req.onreadystatechange = processAccessGroupRequest; req.open("GET", url, ...
1
vote
1answer
229 views

Using AJAX through Javascript to call a spring controller

I ain't able to open the controller's method var url = "UsersGroupReader"; if (window.XMLHttpRequest) { req = new XMLHttpRequest(); } else if (window.ActiveXObject) { req = new ...
2
votes
2answers
600 views

Spring Ajax - @ResponseBody - Returning null response

In my spring webapp, I have an ajax servlet that answer json (using jackson): <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
1answer
77 views

Is there any way to add cookie in method with @ResponseBody annotation?

I build my web application based on Spring MVC and come across a problem whilst trying to add a cookie in a method handling an ajax request. I realized that method with @ResponseBody (in my example ...
0
votes
1answer
63 views

How to apply property editors on the objects being returned in response to ajax calls?

I am specifying the property editors for my controller as : @InitBinder protected void initBinder(WebDataBinder binder) { SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy"); ...
0
votes
0answers
40 views

How can i reload template with ajax

Help me please for my problem I use Apache Tiles with Spring MVC 3. And i use tiles-tag <tiles:insertTemplate template="my_tag.jspx"/> In this tag i use <!-- this some code --> ...
2
votes
1answer
237 views

Spring MVC controller throwing 415 error media unsupported for JSON request

I have looked at all the other answers for this problem and tried most of the solutions but nothing seems to work. I am using Dojo.xhrPOST(xhrArgs) which obviously comes after the xhrArgs definition. ...
0
votes
2answers
198 views

PropertyEditor is not called on AJAX (JSON) request

I have problem with Ajax request on form submit. The form contains these stringify JSON data: {"articleContent":"<p>aaa</p>","title":"Po vyplnění titulku aktuality ...
0
votes
1answer
638 views

AJAX Post to Spring MVC Controller - Error

Below are the two snippets to post form data to Spring Controller. 1. $("#formData").submit(function(event){ event.preventDefault(); var jqxhr = $.post("submitdata", ...
0
votes
1answer
372 views

Spring MVC Controller Return JSON - Error 406

After searching all the related links in StackOverflow for the given title I am posting this question. My Controller code is: @RequestMapping(value="/user/update", method = RequestMethod.GET, ...

1 2 3 4 5 6