首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hibernate annotation与范型的有关问题

2012-10-30 
hibernate annotation与范型的问题创建一个CTime的classclass CTime{...}class CBaseRangeT{protected T

hibernate annotation与范型的问题
创建一个CTime的class

class CTime{...}class CBaseRange<T>{      protected T start;      protected T end;      ....}class CTimeRange<CTime>{...}class CTimeUserType implements UserType{...}


请教,我怎么使用hibernate annotation映射CTimeRange中的start属性
在这儿start是范型.

我查了半天资料,还是没有找到,
似乎hibernate annotation现在还不支持泛型
需要@TypeOverride吧

热点排行