我试图从jsp获取表单的值以在控制器的函数中使用并显示另一个jsp
<form action="/uc">
<input name="cnp" type="text">
<br>
<br>
<input type="submit" value="Find">
</form>
这是我的Controller方法
@RequestMapping(value = "/uc", method = RequestMethod.GET)
public String userContracts(@RequestParam("cnp") String cnp, Model model)
{
List<Contract> ContractList = new ArrayList<Contract>();
ContractList = cl.getContractsOfUser(cnp);
model.addAttribute("ContractList", ContractList);
System.out.println("In uc");
return "UserContracts";
}
答案 0 :(得分:1)
感谢pedram ezzati的帮助!
问题是我不得不使用
<form action="http://localhost:8080/SpringWebTemplate/uc.html">
我以前的尝试是不使用.html或仅使用/ uc
答案 1 :(得分:0)
确保在春天来临时扫描包裹。
在app-config.xml文件中,检查标记下面的
context:component-scan base-package =“ com.test.ashok”