如何通过刷新浏览器在我的控制器中刷新存储在属性中的数据? 我想要做什么: 我将一些json数据丢失,然后将其显示在我的网站中。 它每秒都在变化,所以当我刷新页面进行更新时我想要它。 这里我的控制器metod如何:
@RequestMapping(value = "/", method = RequestMethod.GET)
public String infoWeather(ModelMap model, HttpServletRequest req) {
Location location = LocationManager.getLocation(req);
model.addAttribute("location", location);
Weather weather = WeatherManager.getWeather(location);
model.addAttribute("weather", weather);
return "index";
}
它做什么?
LocationManager.getLocation(req)
根据用户ip获取位置
WeatherManager.getWeather(location)
和天气预报员获取您所在位置的天气 我在我的网站上显示它
但是当我刷新它并不更新我从json cointain解析的天气数据也是日期(年,月,日,小时,分钟和秒) 所以它总是在我运行我的servlet后第一次进入页面时显示数据
请给我一些简单的例子