在Hibernate上下文中,Method链是什么意思?
答案 0 :(得分:2)
在其他情况下也是如此。
thing.meth1().meth2().meth3()....
请注意,meth
必须返回包含meth2
方法的内容,依此类推。
答案 1 :(得分:2)
方法链接是许多Hibernate接口支持的编程风格(参见@hvgotcodes示例)。如果使用此编码样式,最好在不同的行上编写每个方法调用。
SessionFactory sessionFactory = new Configuration()
.configure("hibernate.cfg.xml")
.addResource("test.hbm.xml")
.buildSessionFactory();
否则,可能很难逐步调试调试器中的代码。