Spring Websocket连接状态为404错误

13 浏览
0 Comments

Spring Websocket连接状态为404错误

输出内容缺失

admin 更改状态以发布 2023年5月24日
0
0 Comments

对于那些遇到这个问题的人,这可能会有所帮助。
我在web.xml中有以下内容:


 rest 
 org.springframework.web.servlet.DispatcherServlet
 1

 
 rest 
 /rest/* 


但是这个URL返回404错误:
http://localhost:8080/(项目名称)/monitor
但是这个URL运行良好:
http://localhost:8080/(项目名称)/rest/monitor
干杯!

0
0 Comments

服务器端是否有任何日志输出来响应对/monitor/info的请求?DispatcherServlet本身是如何映射的?根据您上述提供的信息,我会期望是“/”。SockJS终端点基本上是一个在Spring MVC中映射的URL(使用SimpleUrlHandlerMapping),因此请尝试其他Spring MVC映射的控制器方法。并且增加日志记录,可能有过滤器或其他返回404的内容。

0