hibernate不会创建表

发布于 2024-11-19 04:20:42 字数 737 浏览 0 评论 0原文

*我在实体中得到了以下内容。

@Entity("User")
public class User implements java.io.Serializable {
    @ElementCollection(fetch=FetchType.EAGER)
    @CollectionTable(name="FrameworkUser_Properties")
    public Map<String, String> getProperties() {
       return properties;
    }
    public void setProperties(Map<String, String> properties) {
       this.properties = properties;
    }
}

我收到以下错误

Unsuccessful: create table FrameworkUser_Properties (User_id int not null, properties varchar(255) null, properties_KEY varchar(255) null, primary key (User_id, properties_KEY))

有人知道我应该怎么做吗,properties_KEY 不为空吗? 我使用 Hibernate Hibernate 3.6.5.Final,MSSQL

//Trind

*I got the following in an entity.

@Entity("User")
public class User implements java.io.Serializable {
    @ElementCollection(fetch=FetchType.EAGER)
    @CollectionTable(name="FrameworkUser_Properties")
    public Map<String, String> getProperties() {
       return properties;
    }
    public void setProperties(Map<String, String> properties) {
       this.properties = properties;
    }
}

i get the following error

Unsuccessful: create table FrameworkUser_Properties (User_id int not null, properties varchar(255) null, properties_KEY varchar(255) null, primary key (User_id, properties_KEY))

Anyone got any idea how i should do so is properties_KEY is not null instead?
I use Hibernate Hibernate 3.6.5.Final, MSSQL

//Trind

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

回梦 2024-11-26 04:20:42

您似乎正在使用 hashmap 映射值类型的集合。你必须使用 @MapKeyColumn 指定 hashmap 的键列,

例如,你可以尝试一下是否可以解决问题:

@ElementCollection(fetch=FetchType.EAGER)
@CollectionTable(name="FrameworkUser_Properties")
@MapKeyColumn
public Map<String, String> getProperties() {
           return properties;
}

It seems that you are mapping the collection of the value type using the hashmap . You have to specify the key column of the hashmap using @MapKeyColumn

For example , you can try it to see if the problem can be solved:

@ElementCollection(fetch=FetchType.EAGER)
@CollectionTable(name="FrameworkUser_Properties")
@MapKeyColumn
public Map<String, String> getProperties() {
           return properties;
}
∝单色的世界 2024-11-26 04:20:42

我相信你可以做这样的事情:

 @CollectionTable(
        name="FrameworkUser_Properties",
        joinColumns=@JoinColumn(name="OWNER_ID", nullable = false)
  )

I belive you can do something like this:

 @CollectionTable(
        name="FrameworkUser_Properties",
        joinColumns=@JoinColumn(name="OWNER_ID", nullable = false)
  )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文