BAEL-16792 Slice 3 | The top 100 articles should have their own package in the module (#7596)

This commit is contained in:
Dhawal Kapil 2019-08-25 04:47:48 +05:30 committed by Josh Cummings
parent 2ae596d54d
commit ef8c8758c8
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package com.baeldung.spring.controller;
package com.baeldung.spring.requestparam;
import java.util.List;
import java.util.Map;
@ -47,7 +47,7 @@ public class RequestParamController {
@GetMapping("/api/foos4")
@ResponseBody
public String getFoos4(@RequestParam List<String> id){
return "ID are " + id;
return "IDs are " + id;
}
@GetMapping("/foos/{id}")