Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我找不到显示如何在 Config.groovy 中指定将在应用程序的任何部分中调用的目录的示例。所述目录将用作将由应用程序生成的文件的存储库。
你们的任何帮助将不胜感激。
如果您在 Config.groovy 中有以下内容:
my.app.location="/Some/Path"
您可以通过可注入的 grailsApplication 访问它,如下所示:
def SomeController { def grailsApplication def someAction() { def location = grailsApplication.config.my.app.location } }
同样适用于服务、标签库等。