首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

Hibernate源码学习4 _服务注册

2013-11-05 
Hibernate源码学习四 _服务注册??public StandardServiceRegistryImpl(BootstrapServiceRegistry bootstra

Hibernate源码学习四 _服务注册


?


?

public StandardServiceRegistryImpl( BootstrapServiceRegistry bootstrapServiceRegistry, List<BasicServiceInitiator> serviceInitiators, List<ProvidedService> providedServices, Map<?, ?> configurationValues) { super( bootstrapServiceRegistry ); this.configurationValues = configurationValues; // process initiators for ( ServiceInitiator initiator : serviceInitiators ) { createServiceBinding( initiator ); } // then, explicitly provided service instances for ( ProvidedService providedService : providedServices ) { createServiceBinding( providedService ); } }

?

1 楼 zh_harry 2013-09-12   还有人把hibernate学得这么起劲想不明白 2 楼 bsr1983 2013-09-22   zh_harry 写道还有人把hibernate学得这么起劲想不明白
知识储备不足,深入学习下,不知您有啥建议,学点别的? 3 楼 zh_harry 2013-09-22   bsr1983 写道zh_harry 写道还有人把hibernate学得这么起劲想不明白
知识储备不足,深入学习下,不知您有啥建议,学点别的?
用的不多了解,ORM看看mybatis吧,或者自己写一个,hibernate有点重,不适合大型项目。 4 楼 bsr1983 2013-09-22   zh_harry 写道bsr1983 写道zh_harry 写道还有人把hibernate学得这么起劲想不明白
知识储备不足,深入学习下,不知您有啥建议,学点别的?
用的不多了解,ORM看看mybatis吧,或者自己写一个,hibernate有点重,不适合大型项目。
谢谢您的建议,完了看下mybatis

热点排行