У меня в контроллере есть следующее
@GetMapping("/login")
public String login(@RequestParam(name="userId", required=true) String userId) {
if (userId.matches("^\\d+$")) {
return "login";
И у меня есть следующее в моем login.jsp
User: <input type="text" name="userId" value="${userId}"><br>
Однако для URL https://localhost:8443/login?userId=751061
браузер возвращает
User: <input type="text" name="userId" value=""><br>
Как я могу получить доступ к userId
из запроса? Я пытался ${requestScope.userId}
также.
Я перестроил приложение с помощью mvn spring-boot:run
.