0

当我在 localhost:8080/myregister.jsp(controller: localhost:8080/user/register) 中单击提交时,它得到:

请求处理失败;嵌套异常是 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.cn.hnust.dao.UserMapper.insert

当我在 localhost:8080/login.jsp(控制器:localhost:8080/user/login)中单击提交时,它可以工作。

[MYSQL:

如果存在则删除表user_t
创建表user_t(
usernamevarchar(40) NOT NULL,
passwordvarchar(255) NOT NULL,
PRIMARY KEY ( username)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

]

我使用mybatis-generator-core-1.3.2 到通用UserMapper.xml,但是为什么只有'insert'函数不能运行?

整个 Maven 项目在 github 中:https ://github.com/Bonsen/Spring-SpringMVC-mybatis 。

4

0 回答 0