Grails 中的 SSL 验证错误

发布于 2024-11-16 10:58:52 字数 629 浏览 2 评论 0原文

我想在 Grails 中发布带有 SSL 验证的 url。 我已导入证书,并生成了 jks 文件。 但 Grails 似乎没有找到那些 jks 文件。 下面是我正在执行的代码(它位于 Grails 服务类中):

def certificate = "mycert.jks"

def http = new HTTPBuilder(url)

def keyStore = KeyStore.getInstance(KeyStore.defaultType)
getClass().getResource(certificate).withInputStream {
    keyStore.load(it, "test1234".toCharArray())
}

http.client.connectionManager.schemeRegistry.register(new Scheme("https", new SSLSocketFactory(keyStore), 443))

错误是 “无法在空对象上调用 withInputStream() 方法” 所以 getResource() 方法不起作用,并返回 null。

我看到这段代码在功能测试类中运行良好。

有人知道我该如何解决这个问题吗?

谢谢!!!!!!!

I want to make a post to an url with SSL validation in Grails.
I've imported the certificates, and I've generated the jks files.
But it seems Grails does not found those jks files.
Below is the code I'm executing (it's in a Grails Service Class):

def certificate = "mycert.jks"

def http = new HTTPBuilder(url)

def keyStore = KeyStore.getInstance(KeyStore.defaultType)
getClass().getResource(certificate).withInputStream {
    keyStore.load(it, "test1234".toCharArray())
}

http.client.connectionManager.schemeRegistry.register(new Scheme("https", new SSLSocketFactory(keyStore), 443))

The error is
"Cannot invoke method withInputStream() on null object"
so
the method getResource() is not working, and returns null.

I saw that this code, in a functionalTest Class, works fine.

Anyone knows how can I solve this problem?

Thanks!!!!!!!

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

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

发布评论

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

评论(1

顾北清歌寒 2024-11-23 10:58:52

问题是来自 grails-app/services 的非源文件不会复制到类路径中。 src/java 是这种情况,但 src/groovy 不是这种情况。 grails-app/conf 也是如此,但这是唯一发生这种情况的 grails-app 文件夹,因为它是配置文件文件夹。

因此,最好的选择是将文件移动到 grails-app/conf 并使用

Thread.currentThread().contextClassLoader.getResource(certificate).withInputStream {
    keyStore.load(it, "test1234".toCharArray())
}

The problem is that non-source files from grails-app/services aren't copied into the classpath. This is the case for src/java though, but not src/groovy. It's also the case for grails-app/conf, but that's the only grails-app folder that this happens for, since it's the configuration file folder.

So your best bet is to move the file to grails-app/conf and use

Thread.currentThread().contextClassLoader.getResource(certificate).withInputStream {
    keyStore.load(it, "test1234".toCharArray())
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文