Tagged Questions
1
vote
1answer
32 views
How to configure a Spring REST Service to handle multiple versions?
Almost all APIs are dealing with different release versions. In the Internet there are many references suggesting to use this kind of versioning:
http://api.com/v1/questions
...
1
vote
1answer
28 views
Using Spring MVC, accepting POST requests with bad JSON leads to a default 400 error code server page being returned
I am working on a REST api. Receiving a POST message with bad JSON (e.g. { sdfasdfasdf } ) causes Spring to return the default server page for a 400 Bad Request Error. I do not want to return a ...
0
votes
2answers
69 views
How do I post to a REST service using RestTemplate in Spring
How do I post to a REST service using RestTemplate. I have the following RESTful web service and I would like to use RestTemplate to post a new user object to to?
@Controller
@RequestMapping("/api")
...
0
votes
1answer
49 views
Spring MVC - Annotation based controller failed to find request handler method
This has stopped working after I added a Spring Security filter.
Spring 3.1.4.RELEASE
Spring Security 3.1.2.RELEASE
Tomcat 7.0.37
The mapping is configured as expected when the app is deployed
...
0
votes
1answer
22 views
Handle HTML and non-HTML representations in controller with HttpMessageConverters
I have a Spring MVC controller for a RESTful resource (ServiceDirectoryController), which I want to serve both HTML (web page) and non HTML (web service) representations. I want to use view names and ...
0
votes
2answers
37 views
Why is my email getting cut off with Spring MVC and REST?
Can someone please tell me why my email address is getting cut.. for testing we use email address like test@aol.com.dev
I have the following code:
@RequestMapping(value = "/profilenumber/{email}", ...
0
votes
3answers
43 views
Why am I getting org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type
Can someone please tell me Why am I getting org.codehaus.jackson.map.JsonMappingException: No suitable constructor found for type error?
Here is my call:
try
{
String jsonreturn ...
1
vote
1answer
40 views
Return JSON Data with Springs MVC which way is better and why
Return JSON Data with Springs MVC which way is better and why? Should I sent back ResponseEntity or just the Object?
@RequestMapping(value = "/", method = RequestMethod.GET)
@ResponseBody
public User ...
0
votes
1answer
28 views
can anyone tell me how to create RESTful web services in spring with annotations
I am new to spring RESTful web services. can anyone tell me how to create RESTful web services in spring with annotations and what all jars to be included in the project? also how do i test it whether ...
-2
votes
0answers
48 views
Handling anonymous users on public website with REST backend and JS frontend [closed]
I have built a e-commerce web site, with this architecture :
- JS front-end in angularjs
- Java REST back-end with Spring MVC
On some pages of my website, i need to restrict access to only admins. So ...
1
vote
1answer
60 views
Spring MVC REST Service and Client. I am looking for a better way to deal with errors
Spring MVC REST Service and Client. I am looking for a better way to deal with errors!
I would like sometimes to return a errror message to the client or a status code but I dont know hiow. Can ...
0
votes
1answer
37 views
How do I add errors to my Spring MVC REST Service?
How can I change/update the following REST call from Spring MVC to return a error if the user did not enter of the the two names I was coding for.. something like a NOT FOUND ?
@RequestMapping(value ...
0
votes
1answer
46 views
Case-insensitive query string request paramters
My goal is that all below URI's should work
https://rest/xyz?sort=name
https://rest/xyz?Sort=name
https://rest/xyz?filter=name=value
https://rest/xyz?Filter=name=value
To achieve this, I have ...
0
votes
1answer
38 views
How to pass user and password to Spring REST service with Spring RESTTemplate
How to pass user and password to Spring REST service with Spring RESTTemplate..
I have a Spring MVC project using Spring Secuirty and I need to write a client with Spring RESTTemplate to access it.. ...
0
votes
1answer
37 views
Spring REST service.. How do I secure REST calls I am making in Spring MVC
Spring REST service.. How do I secure REST calls I am making in Spring MVC..
I am working on a Spring MVC web project and we are thinking about moving some of the backend calls to REST service so we ...
0
votes
0answers
18 views
Spring REST call is not returning the page I want
I am working on a example spring REST call.. I sent a URL into the controller and the controller should return a page..
I don't think its getting to the contoller:
my webconfig:
@Configuration
...
1
vote
1answer
38 views
Spring MVC calling webservice endpoint from the browser
I want to be able to call my web service directly from the browser. Calling it from a HTTPClient via the web browser is OK, but if i try and call it directly via the browser I get the following error: ...
1
vote
1answer
110 views
Spring mvc RestTemplate postForObject doesn't send parameter to REST API
I have a REST API. I'm making a client.
I configured spring security to authentication by my rest service.
My REST API controller
@RequestMapping(value = "/login", method = RequestMethod.POST, ...
0
votes
1answer
29 views
How to validate request parameter if it is not a bean in spring MVC?
Below is a POST end point in my spring MVC REST service. I want to use spring validation frame work to make sure that list I receive is not empty. How do I do it? Do I have to provide wrapper bean to ...
2
votes
2answers
57 views
How to write a Spring web MVC 3 application in a RESTful way?
I worked for some time now on integration projects, mostly building and integrating services. Now I started an own, learning project to build an application from ground up and I am currently stumbling ...
1
vote
0answers
75 views
Apache Shiro for securing REST api
I am attempting to integrate Shiro in my spring mvc application.
The authentication is backed by a LDAP server and i am able to successfully authenticate against the ldap server and obtain a cookie.
...
0
votes
1answer
36 views
Writing applications with clean URL
I want to display articles in a website in the following manner
example.com/articles/23/thetitle
ie example.com/articles/{id}/{title}
For each request, what actually matters is the id. I will ...
0
votes
0answers
42 views
Why Spring MVC creates session for each restful request?
I have create Restful web service using Spring MVC.
As theory says Restful request is stateless, mean no session is required.
But what I have observed with Spring MVC is that for each Restful ...
0
votes
2answers
109 views
How to decode Gzip compressed request body in Spring MVC
I have a client that sends data with
CONTENT-ENCODING deflate
I have code like this
@RequestMapping(value = "/connect", method = RequestMethod.POST)
@ResponseBody
public Map ...
1
vote
2answers
79 views
How to create paths in RESTful web service for “action oriented” methods?
I am creating a RESTful web service and I try to follow the conventions and recomendations for creating a good web service. Now I have come to a halt though. I have a User entity in my system that I ...
0
votes
0answers
63 views
spring mvc request mapping inheritance
I have a Spring MVC 3.2 app and I am trying to find the best way to handle my URLs. I am looking to support multiple customers with something like this:
www.myproduct.com/customerNameX/products
...
0
votes
1answer
161 views
400 Bad Request when posting JSON Array to a Spring controller
I have been successful in sending a simple JSON object over to a spring framework Controller
curl -v -H "Content-Type: application/json" -H "Accept: application/json" -d ...
0
votes
1answer
413 views
Can not deserialize instance of java.lang.String out of START_OBJECT using Spring Rest Template
I am using the Rest Template to invoke a third party Restful API. but I am getting the "Can not serialize instance of java.lang.String out of START_OBJECT" Below is the code:
xml file:
<!-- ...
0
votes
1answer
38 views
Using Spring have multiple JSON request (POST) in a single HTTP call
How can I use Spring3 framework when combining 2 different REST (using JSON) requests within a single HTTP call? I am using Spring with jackson for JSON conversion. What is the most optimal way of ...
0
votes
1answer
72 views
spring mvc: parse repeated request param
As you probably know, http supports repeated parameters, such as http://host/file?id=1&id=2.
In my case a Javascript element sends the ids of multiple rows in order for the server to do something ...
1
vote
3answers
125 views
SpringMVC handle errors in rest controller
i'm using SpringMVC and i want to handle exception on rest controller.
My controller usually write a json in response output, but when exception occurs i'm unable to catch it and tomcat html page is ...
0
votes
3answers
361 views
Spring MVC Rest Service Controller with Error Handling done right?
I was wondering how to correctly implement a Spring Controller which is supposed to serve as a REST Service. Especially I want to try and make the interface as RESTful as possible. Also i'd like to ...
0
votes
2answers
62 views
Can't get Spring security to work BASIC authentication
I am trying to add Spring security and I can't get it to work. However I would have thought that this would cause the browser to popup a dialog asking for username and password, but nothing is shown. ...
0
votes
1answer
291 views
Required String parameter is not present with Spring RestTemplate
I am having trouble to post 2 parameters with RestTemplate :
a String
a MultipartFile
I don't think there is a problem in my controller because it's very basic. It seems that the controller ...
0
votes
1answer
157 views
Jersey integration with Spring MVC
I want to create a website that is able to work with rest with an android application.
For these rest-calls I want to make use of a seperate servlet
Web.xml
<?xml version="1.0" ...
0
votes
1answer
182 views
How to upload image and post JSON to RESTful web service in Spring 3
I am trying to post a JSON entity and an image to my web service. However I don't manage to get it working. Last error is that the request is not a multipart request.
@RequestMapping(method = ...
0
votes
2answers
76 views
Spring bind a bean to rest post request
I have following REST service build around Spring. I want to implement a POST method which can add user. The data for user is in request body and can be either in JSON/XML. I want server side ...
1
vote
1answer
103 views
Building an scalable Spring MVC application [closed]
I'm trying to build a web application using Spring MVC.
I would be using it to server GUI as well as JSON content.
Has anybody deployed such a solution and can vouch for it that it works?
Any ...
0
votes
1answer
168 views
Need to send data in PDF,CSV and HTML format from REST API. Should I send files Or send JSON?
I am creating REST Api for a project using Spring MVC. On front end some reports are needed to be displayed in PDF, CSV and HTML format. Should I send JSON data to the front end for those reports and ...
0
votes
1answer
222 views
Spring MVC - REST Webservices. Bean Validation Messages
I am trying to find out the way to show proper validation messages in my Spring MVC application.
This is the Example Bean:
@Entity
@Table(name="employees")
public class Person {
private Integer ...
0
votes
3answers
269 views
REST - Returning Created Object with Spring MVC
I have a REST call that accepts JSON object, lets say, a person. After I create this object (validated and saved to the database), I need to return the newly created JSON Object.
I think the standard ...
1
vote
1answer
59 views
How to deal with aggregation and composition in RESTful web service
I have created the following entities, Book, Chapter and Feedback. The Book have many Chapter entities, and it also have many Feedback entities. Since no Chapter entities could live by them self they ...
0
votes
1answer
19 views
How can I better handle binary ReST resource errors when submitting a form to download those resources?
I have a service that generates a PDF document via a form of which GETs a ReST resource based on the input parameters. Some of these entries map to request path's and others map to optional request ...
0
votes
1answer
34 views
Spring 3 and JAXB
I have implemented a basic mvc app using Spring, i annotated my class as follows
I have added Spring oxm to my pom, but not added jaxb or json handlers.
My configuration is pretty much empty.
So my ...
0
votes
1answer
101 views
How to make embedded Jetty use the AppContext it's defined in as parent context for servlets
I have a standalone java app that now runs an embedded Jetty server to expose a RESTful API for HTTP. It does make heavy use of Spring beans for everything from Hibernate to Jetty. I have Jetty ...
0
votes
2answers
854 views
Spring Mvc Web Application with Rest interface
in my exercise i have to develop a spring application which should be accessible through a WebGUI AND a REST service.
Now i browed through the examples of Spring MVC, there is this hello world ...
-1
votes
1answer
113 views
sending POJO to save on server using RESTful webservices
I am developing a Restful web service which allow user to set all parameters in POJO and send it to server side web service, then web service will store this data and return generated Id back to ...
0
votes
0answers
308 views
Spring REST web service for Eclipse Juno + WebLogic
I am new to REST web services. So I tried getting a sample and running on Eclipse Juno and WebLogic 10.3.5. It worked as a charm.
But when I followed the very same sample and create my own dynamic web ...
2
votes
2answers
228 views
Mixing REST and JSP in Spring MVC, Cannot find JSP
I'm sure this is a noob question, and I've spent the better part of an hour trawling stackoverflow for an answer but nobody seems to have my case so here we go...
I have a new webapp that uses Spring ...
0
votes
1answer
598 views
Header Access-Control-Allow-Origin:* not working properly on Spring MVC
I have a web application running on Spring MVC using RESTful web services. I'm trying to send a JSON to those web services from an HTML/Javascript file. Here's the Javascript:
$.ajax
(
{
type: ...


