Spring Boot -www.example.com中未使用的属性aplication.properties

hc8w905p  于 2022-12-13  发布在  Spring
关注(0)|答案(2)|浏览(139)

您知道为什么IntelliJ IDEA Community Edition 2022.02.1看不到www.example.com enter image description here中的属性aplication.properties?吗编译器即使看不到它们也能识别并使用它们吗?如果您需要有关此问题的更多信息,请问我,我会尽快给您回信。
这是我的pom.xml

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.7.3</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demo</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>18</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

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

</project>
slmsl1lt

slmsl1lt1#

Spring & Spring Boot assistanceIntelliJ IDEA Ultimate提供,它可以检测您的所有Bean(沿着用法和注入)、Rest控制器端点、应用程序属性(沿着使用这些属性的类)、Spring相关的自动完成等。上述特性在IntelliJ IDEA Community Edition中不可用,这就是为什么您会看到这些应用程序属性未被使用。然而,实际上,应用程序应该能够很好地接收到它们(假设您已经正确地进行了设置)。
但是,这些缺失的特性不应该阻止您使用IntelliJ IDEA Community Edition开发Sping Boot (或任何JVM框架)应用程序。

wljmcqd8

wljmcqd82#

由于application.properties不在源文件夹中,因此名称为src/main/resource可能就是它

相关问题