Grails 应用程序插件依赖项加载顺序
这是一个场景。我有一个依赖于多个插件的 Grails 应用程序。 假设 App 依赖于pluginMain、pluginA 和pluginB。即 application.properties 看起来像 插件主版本1 插件A版本X pluginB versionX
pluginB 是我编写的自定义插件。 pluginA 是第 3 方插件。我无法控制源代码。
pluginA 和pluginB 都依赖于pluginMain。
因此,当应用程序加载时,根据这些插件的加载顺序,pluginA和pluginB中的每一个都会尝试安装pluginMain。问题是,如果pluginA首先加载,它会安装pluginMain的version2,如果pluginB首先加载,那么它会安装pluginMain的version1。该应用程序正在使用pluginMain 的版本1。在这种情况下,pluginMain 的两个版本都会安装。
由于版本较多,导致app启动后就炸掉。准确地说,它会导致登录页面无限重定向。
所以我想知道是否有办法指定插件的加载顺序,以便在应用程序中我可以说加载pluginMain版本1。并且所有剩余的插件都将使用这个版本的pluginMain。
Here is a scenario. I have a Grails application that depends on multiple plugins.
Say App depends on pluginMain, pluginA and pluginB. i.e the application.properties looks like
pluginMain version1
pluginA versionX
pluginB versionX
pluginB is a custom plugin written by me.
pluginA is a 3rd party plugin. I dont have control over the source code.
both pluginA and pluginB depend on pluginMain.
So when the application loads, depending on the load order of these plugins, Each of pluginA and pluginB try to install pluginMain. The problem is if pluginA loads first it installs version2 of pluginMain and if pluginB loads first then it installs version1 of pluginMain. The app is using version1 of pluginMain. In this case both versions of the pluginMain are installed.
due to multiple versions, the app blows up after starting up. To be precise, it leads to infinite redirects on the login page.
So I was wondering if there is way to specify the load order of the plugins, so that in the app I can say load pluginMain version 1. and all the remaining plugins would use this version of pluginMain.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以强制您的应用程序在配置中使用所需的插件版本。
插件依赖项
我有类似的情况,但最终只是更新我的自定义插件以使用依赖插件的新版本。
You may be able to force your app to use the desired plugin version in configuration.
Plugin Dependencies
I had a similar situation but wound up just updating my custom plugins to use the newer version of the depended-on plugin.