这是我的代码:
public ModelAndView login(@ModelAttribute("testVO") TestVO testVO){
//test the VO work theory
//testVO = new TestVO();
testVO.setTestStr("this is my test!");
return "index/index";
}
当我使用 new 为 testVO 创建对象时。我无法在我的 jsp 页面中获取值。如果我使用 set 方法,它可以工作。
所以,我认为:对象 testVo 已经由 IOC 容器创建,所以 JSP 从容器中获取引用,而不是我自己创建的。
我对吗?先谢谢了。