你好,我想得到一些建议。 我的问题有点复杂。
总结
这是我的虚拟场景。
不可能吗?
如果有可能,我该如何解决?
google中有代码,我修改了我的代码,但是它不起作用,因为“ HttpServletResponse response”成为异常。
此代码与我的试用不同,只是出于动机。 我的核心问题是这个!
服务器是否可以在不修改客户端程序的情况下发送给用户消息?
@RequestMapping(“ / ****”)
public String loginaction(
@RequestParam(value="XXXX", required=true) String XXXX
, @RequestParam(value="XXXX",required=true) String XXXX
, HttpServletResponse response
) throws Exception{
if(rough condition search){
response.setContentType("text/html; charset=UTF-8");
PrintWriter out = response.getWriter();
out.println("<script>alert('check your Search Condition');</script>");
out.flush();
}
return XXXX;
}