ibatis实践

----------》
org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: java.sql.SQLException: ORA-00911: 无效字符

### The error may involve defaultParameterMap
### The error occurred while setting parameters
### Cause: java.sql.SQLException: ORA-00911: 无效字符


解决办法 因为mapper文件的sql语句加了分号,晕,程序员的分号综合症

------------》
写<mapper namespace="student">的时候最好把类的包名称写全,虽然不写按一下调用
// Student stu = (Student)sqlSession.selectOne("student.selectStudentById",1);
// System.out.println(stu.getLastName());
没有问题,但是如果用 getMapper形式的话就报错
StudentDao studentDao = sqlSession.getMapper(StudentDao.class);
Student stu = studentDao.queryStudentById(1);
System.out.println(stu.getLastName());
所以 namespace不要瞎写,写与dao接口(itbatis叫mapper层)对应的名字,如
<mapper namespace="com.xj.dao.StudentDao">

注意:这么写其实就是绑定了 Studentmapper.xml和StudentDao进行了绑定,接口的方法名称必须和mapper 那个xml文件中的定义的名称相同,否则报找不到方法的错误。

------------》ibatis3.0入门方面的几篇文章

一个非常好的入门例子(谢谢,开始没有好好看,结果其中提到的错误都反了o(╯□╰)o)
http://wanqiufeng.blog.51cto.com/409430/515132

几个配置文件说明的文章
http://blog.csdn.net/samnalove/archive/2010/07/01/5706957.aspx
http://hi.baidu.com/bjwanghui2007/blog/item/bec876355b1224365ab5f51e.html
http://blog.sina.com.cn/s/blog_6145ed810100e570.html
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值