0

我尝试学习使用HTTPClient。但HttpClient client = HttpClient.newHttpClient();不起作用。

IntelliJ我更新了我的编译器以使用 Java 版本 12 并且pom.xml我将java.version属性设置为 12。

在我写HTTPClient它之后import sun.net.www.http.HttpClient,然后newHttpClient()方法不起作用。对于这种方法,我需要import java.net.http.HttpClient;

这是我的pom.xml

<properties>
    <java.version>12</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.apache.commons</groupId>
        <artifactId>commons-csv</artifactId>
        <version>1.8</version>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <scope>runtime</scope>
        <optional>true</optional>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
        <exclusions>
            <exclusion>
                <groupId>org.junit.vintage</groupId>
                <artifactId>junit-vintage-engine</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
4

2 回答 2

0

现在可以了。我在我的通勤者上安装了 java 版本 13 并在项目结构中进行了编辑

于 2020-03-03T08:07:49.360 回答
-2

您应该将此依赖项添加到您的 POM.xml

 <dependency>
   <groupId>org.apache.httpcomponents</groupId>
   <artifactId>httpclient</artifactId>
   <version>$version</version>
 </dependency>
于 2020-03-02T10:13:38.303 回答