1

我正在使用控制器在 html 页面中显示一个简单的字符串列表。我没有收到任何错误,但是在启动页面时,它正在下载 json 对象列表并要求我将其保存为文件。请帮我在哪里给出,以便它可以在jsp页面中显示。

这是我的控制器。

@Controller
@RequestMapping(value="/hello")
public class HelloWorldController {

     public static Map<String, UserForm> data = new HashMap<String, UserForm>();
      static{
        data.put("ADAM", new UserForm("Adam", "Santharam", 30));
        data.put("JANE", new UserForm("Jane", "Babu", 27));
      }


    @RequestMapping(value="{name}", method = RequestMethod.GET, produces="application/json")
    public @ResponseBody UserForm getTestJson(@PathVariable String name) {          

        UserForm user = data.get(name.toUpperCase());

        //UserForm user = new UserForm("Rengaram", name, 1001);
        return user;
    }

}
4

0 回答 0