Код: Выделить всё
@GetMapping("/{entityTypeName}")
@ResponseBody
public ResponseEntity GetBusinessEntities(@PathVariable("entityTypeName") String entityTypeName, @RequestParam(defaultValue = "") String requestParam1, @RequestParam(defaultValue = "") String requestParam2, @RequestParam(defaultValue = "") String requestParam3, ServerWebExchange exchange) throws Exception
{
...
}
http://localhost:8080/EntityType?requestParam1= One&requestParam2=Two&requestParam3=Three
Я проверяю переменнуюentityTypeName, и ее значение — «favicon.ico», а не «EntityType». Несколько дней назад все работало нормально. Есть идеи, что я мог сломать и как это исправить?
Подробнее здесь: https://stackoverflow.com/questions/788 ... -ico-value