Questions tagged [http-request-parameters]

The parameters that are mapped to the servlet request when they are parsed from the http request.

The parameters that are mapped to the servlet request when they are parsed from the http request. These parameters represent a query string when a method GET is used and a body of the request if a method POST is used.

276 questions
-1
votes
2 answers

Spring MVC : How managing to get a java object from a GET request?

I am trying to use SpringMVC to handle a form but now I am stuck and I'm here to ask for your help. When the user submit the form, my controller returns the jsp result page and the user can check what he filled in. In that result page I have 2…
akuma8
  • 4,160
  • 5
  • 46
  • 82
-1
votes
3 answers

Match non null words preceded by certain strings only

I've got a request parameter string that will always come to my server like so: str1=wordA&str2=wordB&desc3=&int=0etc. The catch here is the parameter with name desc3, which may or may not have data accompanied with it, as I've shown here, with no…
REAL O G
  • 693
  • 7
  • 23
-1
votes
1 answer

struts2 action redirect to servlet with parameters

I would like to find out if there is a way to redirect struts 2 action result to a servlet with the request parameters intact? I am wondering if I can something similar like https://struts.apache.org/docs/dispatcher-result.html:
-1
votes
1 answer

how to generate a HTTP rquest in a controller spring mvc

I have a form created with bootstrap and I use spring MVC. I don't use spring security here.
bula
  • 8,719
  • 5
  • 27
  • 44
-2
votes
1 answer

I have a JAVA Springboot error @RequestParam("")

I am new to JAVA Springboot and I have an error when trying to send a json by GET. For the tests I use POSTMAN and this error sends me: { "status": "INTERNAL_SERVER_ERROR", "message": "Required request parameter 'tags' for method parameter type List…
-2
votes
1 answer

C# Asp.net string values HttpRequestHeader

I send data to the API via HttpRequestHeader (post) The server response is: code1=7ea12f&code2=3867&code3=123&code4=104 I need to string each value to view them in separate label. label1.text = code1; label2.text = code2; label3.text =…
amid
  • 23
  • 6
1 2 3
18
19