当我在localhost中单击提交时:8080 / myregister.jsp(控制器: localhost:8080 / user / register),它得到:
请求处理失败;嵌套异常是 org.apache.ibatis.binding.BindingException:无效的绑定语句(未找到): com.cn.hnust.dao.UserMapper.insert
当我在localhost:8080 / login.jsp(控制器:localhost:8080 / user / login)中单击提交时,它可以正常工作。
[MYSQL:
DROP TABLE IF EXISTS user_t
;
CREATE TABLE user_t
(
username
varchar(40)NOT NULL,
password
varchar(255)NOT NULL,
主要关键(username
)
)ENGINE = InnoDB DEFAULT CHARSET = utf8;
我将mybatis-generator-core-1.3.2用于一般的UserMapper.xml,但为什么只有'插入'功能无法运行?
整个Maven项目位于github:https://github.com/Bonsen/Spring-SpringMVC-mybatis。