import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.SessionAttributes;
@Controller
@RequestMapping("/Test2")
@SessionAttributes("first")
public class Test2Controller {
@RequestMapping("/firstMethod")
public String firstMethod (ModelMap map){
System.out.println("执行firstMethod");
map.addAttribute("first", "ok");
return "search";
}
@RequestMapping("/secondMethod")
public String secondMethod(@ModelAttribute("first") String first){
System.out.println("执行了secondMethod");
System.out.println("+++++"+first);
return "search1";
}
}
上面是我写的小例子,先是执行http://localhost:8080/@mvc/Test2/firstMethod.do,可以执行成功,但在执行http://localhost:8080/@mvc/Test2/secondMethod.do时就报错了,
报错内容如下:
2013-3-5 15:50:13 org.apache.catalina.core.StandardWrapperValve invoke哪位高手指点一下,我这个是错在哪了,还是配置文件没配什么
这个配置应该是没有问题的,你把项目名@mvc改下看我把项目名那个@去掉就没问题了,谢谢您。
<spanstyle="font-family:Arial,'LiberationSans','DejaVuSans',sans-serif;font-size:14px;line-height:18px;">@SessionAttribute必须绑定一个已经存在的对象,如果不存在,那么需要先定义<spanstyle="background-color:#FFFFFF;font-family:Arial,'LiberationSans','DejaVuSans',sans-serif;font-size:14px;line-height:18px;">
<spanstyle="background-color:#FFFFFF;font-family:Arial,'LiberationSans','DejaVuSans',sans-serif;font-size:14px;line-height:18px;">在你的代码中加入如下方法试试
<spanstyle="background-color:#FFFFFF;font-family:Arial,'LiberationSans','DejaVuSans',sans-serif;font-size:14px;line-height:18px;">
<preclass="brush:java;toolbar:true;auto-links:false;">@ModelAttribute("first")publicStringpopulateForm(){return"";//populatesformforthefirsttimeifitsnull}<spanstyle="font-family:Arial,'LiberationSans','DejaVuSans',sans-serif;font-size:14px;line-height:18px;background-color:#FFFFFF;">
<arel="nofollow">http://localhost:8080/@mvc/Test2/secondMethod.do?first=first就能访问了.你在方法上写了<spanstyle="font-family:微软雅黑,Verdana,sans-serif,宋体;font-size:14.44444465637207px;line-height:21.99652862548828px;background-color:#F9F9F9;">@ModelAttribute("first"),是让接收参数的.
<spanstyle="font-family:微软雅黑,Verdana,sans-serif,宋体;font-size:14.44444465637207px;line-height:21.99652862548828px;background-color:#F9F9F9;">不过你url中带了@竟然能访问我还是第一回见.
<divclass="ref"><arel="nofollow">http://localhost:8080/@mvc/Test2/secondMethod.do?first=first就能访问了.你在方法上写了<spanstyle="font-family:微软雅黑,Verdana,sans-serif,宋体;font-size:14.44444465637207px;line-height:21.99652862548828px;background-color:#F9F9F9;">@ModelAttribute("first"),是让接收参数的.
<spanstyle="font-family:微软雅黑,Verdana,sans-serif,宋体;font-size:14.44444465637207px;line-height:21.99652862548828px;background-color:#F9F9F9;">不过你url中带了@竟然能访问我还是第一回见.
问题解决了,我之前那样写就可以了,是项目名字不对,去掉那个@就可以了,谢谢您啦!版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。