gpt4 book ai didi

hibernate - 我可以在我的应用程序中使用不同的文件名而不是 hibernate.cfg.xml

转载 作者:行者123 更新时间:2023-12-01 11:33:17 24 4
gpt4 key购买 nike

我可以在我使用 Hibernate 作为 ORM 框架的应用程序中使用不同的 hibernate 文件名而不是 hibernate.cfg.xml 吗?

configuration = new Configuration();
sessionFactory = configuration.configure("MyFileName.cfg.xml")
.buildSessionFactory();

我想在我的应用程序中使用不同的文件名?

最佳答案

是的你可以。在这种情况下,必须像您在上面的代码中所做的那样明确指定。如果文件在类路径中,则文件名前不需要斜线。

configuration = new Configuration();
sessionFactory = configuration.configure("MyFileName.cfg.xml")
.buildSessionFactory();

在这里,MyFileName.cfg.xml 应该存在于类路径中。

关于hibernate - 我可以在我的应用程序中使用不同的文件名而不是 hibernate.cfg.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30266033/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com