79348976

Date: 2025-01-11 22:17:13
Score: 1
Natty:
Report link

Problem was in home controller

@RestController
public class HomeController {

    @RequestMapping("/{path:[^\\.]*}")
    public String redirectToReact() {
        return "forward:/index.html";
    }
}

that was blocking requests from websocket, so if you should check if u have the same thing if u got the same problem

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: EnGold