gpt4 book ai didi

java - LoggingInterceptors 在 CXF 中应该是静态的吗?

转载 作者:行者123 更新时间:2023-12-01 12:49:09 25 4
gpt4 key购买 nike

我有几个 CXF 拦截器,目前我只是在每个 SOAP 网络服务请求上使用 new 运算符重新创建它们。

我想知道是否应该使这些拦截器静态化?

Client client = ClientProxy.getClient(port);
LoggingOutInterceptor loi = new MyLoggingOutInterceptor(); //static??
loi.setPrettyLogging(true);
loi.setPrettyLogging(true);
client.getInInterceptors().add(loi);

最佳答案

即使客户端代理在线程之间共享( subject to these restrictions ),您也应该可以使用日志拦截器的单个实例,前提是它的实现也是线程安全的。

关于java - LoggingInterceptors 在 CXF 中应该是静态的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24385603/

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