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