Scala 和 sbt:在资源中存储 SQL

发布于 2024-10-14 23:32:40 字数 260 浏览 2 评论 0原文

我想将数据库模式存储在它自己的文件中,并让我的 Scala 代码检索它(并通过 JDBC 执行它)。

在我看来,sbt 希望我将文件存储为:src/main/resources/packagename/my.sql。把它放在那里,我看到它在罐子里 - 但我似乎无法从 Scala 访问它。

具体来说, getClass().getResource("my.sql") 返回一个空指针,我能想到的任何其他形式也是如此。

我应该如何加载文件?或者有更好的方法吗?

I'd like to store a database schema in its own file, and have my Scala code retrieve it (and execute it via JDBC).

It seems to me that sbt wants me to store the file as: src/main/resources/packagename/my.sql. Putting it there, I see it's in the jar - but I can't seem to access it from Scala.

Specifically, getClass().getResource("my.sql") returns a null pointer, and so does any other form I can think of.

How should I load the file? Or is there a better way to do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时常饿 2024-10-21 23:32:40

我有一个几乎相同的问题。
唯一的区别是我的文件位于 src/main/resources 中(没有任何包)。
这对我有用。

val is:InputStream = Github.getClass().getResourceAsStream( "/repo.json" );

I had an almost identical problem.
The only difference is my file is in src/main/resources (without any packages).
This worked for me.

val is:InputStream = Github.getClass().getResourceAsStream( "/repo.json" );
樱桃奶球 2024-10-21 23:32:40

为什么不生成一个文件,并将其存储为“my.sql”,然后搜索它,它出现在文件系统中的位置?

Why don't you generate a file, and store it as "my.sql", and later search for it, where it appears in the filesystem?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文