Scala 和 sbt:在资源中存储 SQL
我想将数据库模式存储在它自己的文件中,并让我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我有一个几乎相同的问题。
唯一的区别是我的文件位于 src/main/resources 中(没有任何包)。
这对我有用。
I had an almost identical problem.
The only difference is my file is in
src/main/resources
(without any packages).This worked for me.
为什么不生成一个文件,并将其存储为“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?