基本上,我目前有一个正在处理的 MVC 项目,我可以使用以下类将值从服务器传递到客户端......
package org.assessme.com;
import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class UserManagementController {
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
/**
* Simply selects the home view to render by returning its name.
*/
@RequestMapping(value = "/userManagement", method = RequestMethod.GET)
public Object home(Locale locale, Model model) {
logger.info("User management view controller loaded...");
Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale);
String formattedDate = dateFormat.format(date);
model.addAttribute("serverTime", formattedDate );
return "userManagement";
}
}
然后可以使用符号访问它...
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page session="false" %>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>
Hello world!
</h1>
<P> The time on the server is ${serverTime}. </P>
</body>
</html>
我的问题是,我将如何更改这个项目,以便我可以使用 JSON 作为 Ajax 请求,所以说用户点击了一个按钮......
function userManage(){
$('div.mainBody').load('userManagement');
}
我希望 userManagement 返回视图 userManagement (就像现在一样),而且还返回用户的 json 响应。
任何人都可以给我任何建议吗?
谢谢,