我需要使用 CXF Spring 配置创建 SSL 安全 Web 服务客户端,我想知道如何告诉 CXF 使用我的密钥库中的客户端证书?我需要在 WEB-INF 下创建 cxf.xml 文件吗?如果是的话,我应该在那里包括什么?
我只需要客户端,因为服务器端是我正在连接的第 3 方提供商。
我的 pom 中确实有以下依赖项
 <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-rt-frontend-jaxws</artifactId>
        <version>${cxf.version}</version>
    </dependency>
    <dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-rt-transports-http</artifactId>
        <version>${cxf.version}</version>
    </dependency>
谢谢!