我正在发送带有以下代码的请求:
final WebTarget target = client.target(url);
CustomResponse response = target.request(MediaType.APPLICATION_XML_TYPE)
.post(Entity.xml(password), CustomResponse.class);
身份验证旨在接受用户名作为url
密码在请求正文中发送的一部分。
问题是密码显示在由库内的类生成的日志ClientRequest#writeEntity()
中javax.ws.rs
。
所以,我的问题是如何强制该库在不关闭日志的情况下不将密码存储在日志中?
谢谢你。