Bootstrap

【ERROR】 [main] - org.apache.ibatis.exceptions.PersistenceException:

今天在做第二个项目的时候一直提示有错误,翻译后显示sql语法错误,但是一直不知道在哪,附错误截图

 再附上对应的sql语句部分

<mapper namespace="mapper.StudentMapper">
	<select id="getStudentAll" resultType="domain.Student">
		select * from student
	</select>
	<insert id="addStudent" parameterType="domain.Student">
		insert into
		student(sno,name,sex,age,dept_no)
		values(#(sno),#(name),#(sex),#(age),#(dept_no))
	</insert>
</mapper>

在网上查找了一下方法如下:

1、检查sql语句

2、检查是否占用系统关键字

3、检查注释是否为#XXX

检查了很多次均未发现错误,后来偶然看到values后面的括号应该是{}而不是(),修改后成功执行!

附代码

<mapper namespace="mapper.StudentMapper">
	<select id="getStudentAll" resultType="domain.Student">
		select * from student
	</select>
	<insert id="addStudent" parameterType="domain.Student">
		insert into
		student(sno,name,sex,age,dept_no)
		values(#{sno},#{name},#{sex},#{age},#{dept_no})
	</insert>
</mapper>

;