Skip to main content

All Questions

Filter by
Sorted by
Tagged with
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 =...
hoper's user avatar
  • 1,113
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&param2=value2 I also structure the doPost/doGet like this public void doPost(...
angryITguy's user avatar
  • 9,591
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&...
Sadik's user avatar
  • 676
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 ...
CleanCoder's user avatar