我是 Java / SpringBoot 的新手。
我刚刚用 Gradle 创建了一个 SpringBoot 项目,但我不能使用:
import org.apache.cxf.configuration.jsse.TLSClientParameters;
import org.apache.cxf.endpoint.Client;
import org.apache.cxf.frontend.ClientProxy;
import org.apache.cxf.transport.http.HTTPConduit;
我尝试使用 gradle 导入 apache cxf:
compile group: 'org.apache.cxf', name: 'cxf', version: '3.3.3', ext: 'pom'
在 build.gradle 中,然后:
- 使用 VSCode 自动构建
- 手动构建
gradlew build
在那之后,我仍然无法使用org.apache.cxf
我错过了什么?