I recently migrated to Java 17 and Spring 6.1x version. Few of the endpoints in my application have the URL as "/test/PL/".
The groovy tests for the above endpoint fails with the error as
CAUSE: {} org.springframework.web.servlet.NoHandlerFoundException: No endpoint POST /vmob/PL/
Is their a way to include the last "/" in the URL in the latest spring version , because if i try to remove it and handle the NoHandlerException it is completely fine. But i cant change the existing URL now . Any suggestions would help .