Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know how can I pass a parameter to the Rest url and use that parameter to get data from database.

share|improve this question

4 Answers

up vote 1 down vote accepted

You may use query param to pass the parameter and than process it i am giving u a very simple hints.

@GET
@Produces( { "application/xml", "application/json" })
@Path("getDataFromDB")
public ResponseConverter getDataFromDB(
        @QueryParam("recordId") Integer recordId) {

// process with recordId.

}

It will work for you if any doubts let me know.

share|improve this answer
can you give me an example for this – ReNa Jun 13 '11 at 12:02
thank you, implemented your way and got the solution – ReNa Jun 14 '11 at 6:45
@Rahul: you are welcome cheers. – subodh Jun 14 '11 at 7:58

Here is how you can extract parameters from request in Jersey: http://jersey.java.net/nonav/documentation/latest/user-guide.html#d4e253

share|improve this answer

try to read this link, its very usefull and also have the example with source code and jars, it will take little time to read but you will get your answer.

http://www.vogella.de/articles/REST/article.html

share|improve this answer

You can send the JDBC properties in matrix parameters or request parameters. But this practice is very unrecommended.

By doing this you will become venerable in leaking out your info. But for beginner you can do this.

Example:

@Path("connect")
public class DBResource {
    @GET
    @Path("/{url}/{port}/{userId}/{password}")
    public void getConnection(@PathParam("url") String url,
                        @PathParam("port") String port,
                        @PathParam("userId") String userId,
                        @MatrixParam("password") String password) {
    ... // make the connection string
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.