gpt4 book ai didi

java - Spring MVC 中服务器向客户端发送消息

转载 作者:行者123 更新时间:2023-12-01 10:40:25 27 4
gpt4 key购买 nike

我想从Spring MVC框架服务类向客户端发送消息,就像代码下一样

@Override
public void updateBoard(Map<String, Object> map) throws Exception {
String password = boardDAO.selectPassword(map);

if (!password.isEmpty() && !password.equals(map.get("PASSWORD"))) {
return;
}else {
//TODO need to send message to client when password is wrong
}

updatelogDAO.insertUpdateLog(map);
boardDAO.updateBoard(map);
}

如何在Spring MVC中向客户端发送消息服务器'Service'

最佳答案

尝试像这样使用ModelAndView:

 return new ModelAndView("password", "messageError", password);

或者像这样使用Model:

  public void updateBoard(Map<String, Object> map, Model model) {
model.addAttribute("passwordError", message);
....

关于java - Spring MVC 中服务器向客户端发送消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34453699/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com