我正在使用控制器在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;
}
}