1

我的Waffle SSO 过滤器工作得非常好,但我们的服务器日志现在完全充满了如下行:

[2021-05-18T08:54:24.525+0100] [Payara 5.2021.1] [SEVERE] [] [javax.enterprise.system.core.security.com.sun.enterprise.iiop.security] [tid: _ThreadID=115 _ThreadName=http-thread-pool::http-listener-1(3)] [timeMillis: 1621324464525] [levelValue: 1000] [[

  IIOP1002: Principal propagation: Cannot find principal information in subject]]

所以我的问题是,如何摆脱这些日志?

以下是其他一些细节:

应用服务器 - Payara 5

Waffle SSO 类型 - 基于过滤器(2.3.0 版)

操作系统:Windows 10

4

1 回答 1

0

请注意,这可能不是最好的解决方案,而只是一种解决方法!

好的,最后关闭该日志记录的唯一方法是评论进行日志记录的那一行:)。为此,我必须重新编译SecurityMechanismSelector(存在于 C:\Payara\glassfish\modules\ejb.security.jar),并注释该行:

在此处输入图像描述

你可以SecurityMechanismSelector这里找到源代码。一旦该行被注释并且一切都在您的 IDE 中编译好,您需要将类文件放回 jar 并用新编译的 jar 替换原始 jar(位于 C:\Payara\glassfish\modules)。

确保从 JEE 服务器中删除缓存:

  1. 停止服务器

  2. 删除以下位置的所有文件:

    C:\Payara\glassfish\domains\domain1\osgi-cache
    
于 2021-06-10T07:35:03.157 回答