2

我有以下对象:

    @Id
    @GeneratedValue
    private long id;
    @Column(name = "uniqueId", unique=true)
    private String uniqueId;

是否可以从具有 object.uniqueId == "some_unique_id" 的数据库中获取对象?

谢谢。

4

1 回答 1

4
String hql = "select foo from Foo foo where foo.uniqueId = :uniqueId";
return (Foo) session.createQuery(hql)
                    .setString("uniqueId", theUniqueId)
                    .uniqueResult();
于 2013-04-20T11:46:10.957 回答