----------》
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
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