All Questions
Tagged with request.querystring java
4 questions
1
vote
0
answers
866
views
how to write a conditional query string using unirest in java
Im trying to get the records with id's greater than 1000 let's say.
and I'm using unirest in java. I've tried to use queryString but it did not work.
HttpResponse<JsonNode> responsePatientTest =...
2
votes
2
answers
1k
views
What is the behaviour of getParameter for post and get actions?
I have a java servlet with a URL Query string with instructions like this
http://hostname/servet?param1=value1¶m2=value2
I also structure the doPost/doGet like this
public void doPost(...
25
votes
5
answers
51k
views
How to get query string parameters in java play framework?
I'm very new to java play framework. I've set up all the normal routes like /something/:somthingValue and all the others. Now I want to create route the accepts query parameters like
/something?x=10&...
3
votes
3
answers
2k
views
How do you name your query string variables? Short or long? Why?
In our code we have query string variables with very short names such as cId, iId, isA and u. It is very hard to tell what this variables are from their names. I want to use more descriptive names ...