使用 Hibernate 混乱进行搜索
我是 Hibernate 的初学者。我正在浏览许多网络教程,这让我感到困惑。我只是想知道使用 Hibernate 时搜索的方向。
一些教程讲述使用 Hibernate Search 和 Lucene,其他教程讲述使用条件,还有一些教程讲述 createSQLQuery。
有人可以指导我吗?
I am a beginner to Hibernate. I am browsing many web tutorials which is confusing me. I just want to know the direction which to go with searching when using Hibernate.
Some tutorials are telling use Hibernate Search with Lucene, other saying use criteria while other saying createSQLQuery.
Can someone guide me in this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该从 Hibernate-Core 开始阅读 教程 并测试示例,修改它们。恕我直言,这是熟悉(任何)框架的最佳方式。
Hibernate-Search 使用 Lucene,Hibernate-Search 是 Hibernate-Core 的扩展,用于索引文本字段并提供全文搜索。除非您管理核心功能,否则不要对扩展感到困惑。
You should start with Hibernate-Core read the Tutorial and test the examples, modify them. This is IMHO the best way to become familiar with a (any) framework.
Lucene is used by Hibernate-Search which is an extension to Hibernate-Core to index text fields and provide full text search. Don't get confused by the extension unless you managed the core functions.