hibernate get()方法如何使用String类型参数

比如,表中有idusername。我想使用username查询。id是主键... 比如,表中有id username。我想使用username查询。id是主键 展开
 我来答
ahyyxx222
2011-07-21 · TA获得超过2532个赞
知道小有建树答主
回答量:1405
采纳率:33%
帮助的人:1193万
展开全部
get方法是针对主键使用的,要通过其他字段查询必须写hql或criteria
select * from User u where u.username = ?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
198901245631
推荐于2017-10-15 · TA获得超过3.5万个赞
知道大有可为答主
回答量:9037
采纳率:92%
帮助的人:1680万
展开全部
可以直接通过传递字符串的形式来进行Sting类型定义。
可以通过id去查询获得。例如:
Student stu=(Student)session.get(Student.class,"id"); //根据id 得到Student 对象

以下是get方法是API中的方法定义说明:
Object get(Class clazz, Serializable id);此方法返回的是要查询的数据对象,如果没有结果的话,那么返回结果就是个“null”;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
rain22bow
2011-07-22 · TA获得超过144个赞
知道答主
回答量:34
采纳率:0%
帮助的人:44.5万
展开全部
Hibernate 3.2.2 API 中 Session提供下面的接口

Object get(Class clazz, Serializable id)
Return the persistent instance of the given entity class with the given identifier, or null if there is no such persistent instance.

你可以通过id去查询获得。例如
Student stu=(Student)session.get(Student.class,"id"); //根据id 得到stu对象
如果你想通过String参数类型获得查询结果
可以使用
  Query q = sess.createQuery("from tableName where username = ?");
  q.setString(0, "yourusername");
q.list(); Return the query results as a List.

参考资料: google + 关键字:hibernate API

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式