SSH 实践 中遇到的异常问题,老是为null,插不起数据。求指教
项目包在以下链接下载,项目首页为login.jsp,运行时登陆进去后,我再做插入
就是AddBulletinAction执行的时候报以下问题,请热心的老师 下载后看看源代码 指教下,
不生感激。
http://download.csdn.net/detail/cswhgloveu/5292139
public String execute() throws Exception
{
try
{
mgr.addbul(title, content, authid, appendix);
}
catch(Exception e)
{
System.out.println(title);
System.out.println(e.getMessage());
}
System.out.println("显示" +bulletin);
return SUCCESS;
}
控制台显示如下:
werw
添加布告出现异常,请重试null消息
显示null
werw
添加布告出现异常,请重试null消息
显示null
werw
SSH
------解决方案--------------------为什么不断点调试呢?debug!
------解决方案--------------------这种问题debug就能看出来。
------解决方案--------------------看错误信息。错误信息在哪行抛出都是可以看出来的。
显然你的插入方法有问题,可以尝试这样输出
System.out.println(e.getMessage())改成e.printStackTrace();
------解决方案--------------------at whg.service.impl.ManagerImpl.addbul(ManagerImpl.java:113)
看看 什么 东西是null的这中问题好解决