Has anyone experienced any issue with GitHub Copilot VS Code extension affecting Spring Boot Dashboard? I get this error "Name for argument of type [java.util.UUID] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag" when I hit Get API. My API is like this,
@GetMapping("/{uuid}") public ResponseEntity getMethod(@PathVariable UUID uuid)
I am using Spring Boot 3.4.5, Gradle, Java 21.
When I uninstall the GitHub Copilot & GitHub Copilot Chat extension, it works fine. Strange behavior. But when I run with application with bootrun command, it works fine without uninstalling Copilot.
Feel free to ask for any more info if needed.
Sorry for the trouble. I have found the issue. We need to set "github.copilot.chat.copilotDebugCommand.enabled" to false to resolve the issue.