SpringBootVFS这个类是干嘛用的?

发布于 2022-09-13 01:19:09 字数 61 浏览 18 评论 0

请问SpringBootVFS是干嘛用的,今天偶然在配置多数据源是看到,希望有接触的朋友能讲解一下,谢谢了。

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

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

发布评论

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

评论(2

烟若柳尘 2022-09-20 01:19:10

楼上+1
mybatis xml里面的一些配置内容为包的解析(像typeAliases,mappers啊),基本就是这靠这玩意去读取文件了,整合到spring以后,就是ResourcePatternResolver去做扫描了,这就是springbootvfs的作用了

等风来 2022-09-20 01:19:10

The VFS is used for searching classes (e.g. target class of type alias, type handler class) from an application (or application server). If you run a Spring Boot application using the executable jar, you need to use the SpringBootVFS. The auto-configuration feature provided by the MyBatis-Spring-Boot-Starter used it automatically, but it does not use automatically by a manual configuration (e.g. when uses multiple DataSource).

REF: http://mybatis.org/spring-boo...

VFS 是 VirtualFileSystem(虚拟文件系统)的缩写,从名字上你也应该能猜出来是干啥的。

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