1
在Hibernate上下文中,Method的鏈接是什麼意思?在休眠什麼是方法鏈?
在Hibernate上下文中,Method的鏈接是什麼意思?在休眠什麼是方法鏈?
這是在其他情況下的意思。
thing.meth1().meth2().meth3()....
注意meth
必須返回的東西,有方法meth2
,等等。
方法鏈接是許多Hibernate接口支持的編程風格(請參閱@hvgotcodes示例)。如果您確實使用這種編碼風格,最好在不同的行上編寫每個方法調用。
SessionFactory sessionFactory = new Configuration()
.configure("hibernate.cfg.xml")
.addResource("test.hbm.xml")
.buildSessionFactory();
否則,在調試器中遍歷代碼可能會很困難。