• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

How take the parameter value of a GET HTTP Request in my controller method?

 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello to everybody,

in this periodo I am studing the Spring MVC showcase example (dowlodable from STS dhasboard) and I have some simple question about the "Request Mapping" examples:

1) In my home.jsp page I have this link:



As you can see by this link I am doing an HTTP GET Request having a "foo" parameter containing the value: "bar".

This HETTP Request is handled by the following method of the controller class MappingController:



This method manage HTTP Request (only GET type) that have a parameter named "foo"

How can I take the value ("bar") of this parameter and put it in a variable inside the code of my byParameter method?

Thank you very much
Andrea
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
public @ResponseBody String byParameter(@RequestParam("foo") String theParamCalledFoo) {

Mark
 
Sunglasses. AKA Coolness prosthetic. This tiny ad doesn't need shades:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic