Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到了一个使用 Hibernate 的预先创建的项目,并被要求为其添加一些功能。
它附带的数据库有一个用户表,并且有一个登录 servlet 页面,它使用休眠来使用提供的凭据登录用户。
为了获得数据库中的第一个用户,我使用 SQL 工具手动插入了它。现在,当我尝试使用这些凭据登录时,它会失败。我需要做些什么才能使用手动添加的用户吗?
不,要读取现有数据,不需要对数据库中的行本身进行任何操作以使 Hibernate 读取它。您的问题是无数其他可能性之一,例如您的 Hibernate 被配置为从其他数据库或表中读取,或者遇到需要在日志中查找的错误。