gpt4 book ai didi

tomcat - 在 Grails 中设置嵌入 Tomcat 以遵循符号链接(symbolic link)

转载 作者:行者123 更新时间:2023-11-28 21:58:56 25 4
gpt4 key购买 nike

这篇文章的简化问题是:

Grails中如何访问WEB-APP目录外的文件?

我有一个 grails 应用程序,它与另一个系统共享一些资源(图像)。所以我创建了一个指向新文件的符号链接(symbolic link)。这些文件由用户上传,因此有意将它们放在网络根目录之外。

例如:

/images/country_flags/ --> /some/directory/with/images/country_flags/

所以当tomcat请求图片时:

/images/country_flags/flag1.png

它真的去:

/some/directory/with/images/country_flags/flag1.png

我知道 Tomcat 默认不支持符号链接(symbolic link),但可以通过在 META-INF 目录中创建一个包含以下信息的 context.xml 文件来启用它:

<?xml version="1.0" encoding="UTF-8"?>

<Context path="/images" allowLinking="true"></Context>

Grails 允许通过在脚本目录中创建一个名为“_Events.groovy”的新文件来配置 Tomcat。

从互联网上看,这应该可以解决问题:

eventConfigureTomcat = {tomcat ->
println "Changing the configuration for tomcat"
println serverContextPath

def ctx=tomcat.host.findChild(serverContextPath)
ctx.allowLinking = true
println "Configuration changed"
}

但是,我在控制台中得到以下输出:

Changing the configuration for tomcat
/
| Error Exception occurred trigger event [ConfigureTomcat]: Cannot set property 'allowLinking' on null object (Use --stacktrace to see the full trace)

我的application.properties文件如下(注意上下文改为“/”):

#Grails Metadata file
#Wed Sep 26 09:56:39 BST 2012
app.context=/
app.grails.version=2.1.1
app.name=SomeCoolApp
app.version=0.1
plugins.google-visualization=0.5.3
plugins.mail=1.0
plugins.quartz=1.0-RC2
plugins.searchable=0.6.3
plugins.spring-security-core=1.2.7.3

这两种方法都行不通。有人可以向我指出有关如何使用 _Events.groovy 方法配置 Tomcat 的文档。除了尝试打印到控制台之外,是否有办法解决上下文为空的原因?

最佳答案

我找到了答案,但不太明白为什么会这样。我将上下文从 serverContextPath(返回/)更改为“”并且它有效。

eventConfigureTomcat = {tomcat ->
println "Changing the configuration for tomcat"
println serverContextPath

def ctx=tomcat.host.findChild(serverContextPath) // doesn't work?
def ctx=tomcat.host.findChild("") // works
ctx.allowLinking = true
println "Configuration changed"
}

关于tomcat - 在 Grails 中设置嵌入 Tomcat 以遵循符号链接(symbolic link),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12619169/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com