In a Spring controller, can I have a method called based on the number of request parameters?

前端 未结 2 2078
小蘑菇
小蘑菇 2021-02-08 03:36

I\'ve been retrofitting an existing webapp with Spring. Clearly it\'s easier to start with Spring than to add it on later.

We have servlets that can take multiple reque

2条回答
  •  执念已碎
    2021-02-08 03:59

    The RequestMapping annotation tells Spring which URL requests to map to your controller. You can put the value either at the method level or at the class level.

    In your example, nothing differs between the two request mappings. You can do this, though:

    @RequestMapping(value="/bar/example.htm", method={RequestMethod.GET}, params={"prod", "owner"})
    public String doIt( @RequestParam("prod") int prod,
                        @RequestParam("owner") int owner) {
        LOGGER.trace("in doIt(int,int)");
        return "foo/bar";
    }
    @RequestMapping(value="/bar/example.htm", method={RequestMethod.GET}, params={"prod"})
    public String doIt( @RequestParam("prod") int prod) {
        LOGGER.trace("in doIt(int)");
        return "foo/bar";
    }
    

    You can even share a model between them if you want:

    @Model
    public static Map model() {
      LOGGER.trace("in model()");
      Map model = new HashMap<>();
      model.put("hello", "hello world");
      return model;
    }
    

提交回复
热议问题