我需要一些建议。我正在寻找最简单的方法来从jsp形式获取String并使用Spring在响应中显示一些数据。
表格:
<form:form method="post">
Find User by name:<br>
<form:input path="name"/>
<button type="submit">Find</button>
</form:form>
提交后,我需要保存给定的字符串名称和方法:
@ResponseBody
@RequestMapping("/name")
public UserByName getUserByName() {
return getUserByName(name);
}