gpt4 book ai didi

java - pom.xml 配置文件中的依赖项

转载 作者:行者123 更新时间:2023-12-02 12:19:00 24 4
gpt4 key购买 nike

我的问题是,当我向配置文件添加依赖项时,代码中的所有内容都会“无法解析”。这个 pom 有什么问题吗?

<?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>aaa</groupId>
<artifactId>zzz</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>test</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>

<profiles>
<profile>
<id>dev</id>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>

... more dependencies...
</dependencies>
</profile>
<profile>
<id>test</id>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.196</version>
<scope>test</scope>
</dependency>
</dependencies>
</profile>
</profiles>


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

还有一个问题 - 如果我有配置文件,某些依赖项是否可以在没有任何配置文件的情况下成为每个配置文件的一部分?感谢您的回答。

最佳答案

您可以在配置文件内部和外部拥有依赖项。如果您想使用配置文件,则需要从命令行或通过某些激活触发器(例如文件)激活它。

关于java - pom.xml 配置文件中的依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45934816/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com