IntelliJ IDEA 如何在不更改 pom.xml 文件的情况下使用 Maven 存储对 PostgreSQL JDBC 的依赖?

问题描述 投票:0回答:0

我使用 IntelliJ IDEA 创建了 Maven 项目,并按照 this 教程了解如何将 PostgreSQL JDBC 与 Java 连接起来。但是,我没有更改

pom.xml
文件,而是去了
Project Structure
Libraries
,我在其中添加了
postgresql-42.6.0.jar
.

一切正常,但我很好奇这种依赖关系是如何存储的,因为

pom.xml
文件不包括
postgresql-42.6.0.jar
.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.example</groupId>
    <artifactId>dbproject</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>20</maven.compiler.source>
        <maven.compiler.target>20</maven.compiler.target>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

</project>
maven intellij-idea jdbc
© www.soinside.com 2019 - 2024. All rights reserved.