iBatis 是否在我的表上强制使用主键?
我正在处理一个遗留项目。数据库设计得很糟糕。我现在想更改数据库层。我首先想到的是休眠,但我休眠需要在我的表上有一个主键。事实上我的一些表没有主键。所以我进行了谷歌搜索,发现了iBatis,听起来非常好用。但我不知道 iBatis 是否在我的表上强制执行主键?
谢谢。
I'm working on a legacy project. The database is poorly designed. I want to change the DB layer now. The first think go through my mind is hibernate, but I hibernate need a primary key on my table. In fact some of my table does not have primary key. So I did a google search and I find iBatis, it's sounds very good with it. But I don't know whether iBatis enforce a primary key on my table?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不会。IBatis 不会强制您的表上有主键。它的主要工作和优势是将数据从结果集映射到 java 对象。从数据库检索数据的 SQL 语句是由您(您)手工编写的,因此您在这里几乎没有约束或限制。
No. IBatis does not force you to have a primary key on your table. Its primary job and strength is to map data from resultsets to java objects. The SQL statements to retrieve the data from the database are written by hand (you), so you have almost no constraints or limitations here.