English 中文(简体)
绘制地图
原标题:Hibernate mapping a UserType inside a Map

我遇到了一个问题,即我不能坚持使用Hibernate的Map<UUID, Integer>。 我不敢确定如何适当注意到这一收集,以便适当将其绘制成我们的数据库。 我们控制了图谋,因此,任何工作都将受到罚款。 我是否需要具体说明关键用户如何在我的地图上? 我是否需要? 我知道每个领域使用的是类型说明。 也许不是收集? 我在请<代码>session.flush()时收到以下例外情况。

java.lang.ClassCastException: java.lang。 不能 Str。 UUID

@ElementCollection
@Type(type="org.hibernate.type.UUIDCharType")
private Map<UUID, Boolean> orderCount = new HashMap<UUID, Integer>();
问题回答

I believe you will have to write a UserType to handle Map<UUID, Boolean> .. This UserType should then use org.hibernate.type.UUIDCharType to map the key column.





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签