如何通过web浏览器访问spring配置服务器属性?

vom3gejh  于 2021-06-29  发布在  Java
关注(0)|答案(1)|浏览(385)

我只访问了一次配置服务器的属性文件。我的配置似乎发生了变化,我无法重复。。。。
我现在很绝望。两天以来我一直在想这个问题,我的心理健康开始受到影响。
我的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.4.1</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>demos</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>demos</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>11</java.version>
        <spring-cloud.version>2020.0.0</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-config-server</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

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

    <repositories>
        <repository>
            <id>spring-milestones</id>
            <name>Spring Milestones</name>
            <url>https://repo.spring.io/milestone</url>
        </repository>
    </repositories>

</project>

最后是项目中唯一的班级

package com.example.demos;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
@EnableConfigServer
public class DemosApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemosApplication.class, args);
    }

}

因为我使用的不是git而是本地文件,所以资源文件夹中的application.properties文件如下所示:

server.port=8888
spring.profiles.active=native
spring.cloud.config.server.native.searchLocations=/home/leobuilt/IdeaProjects/demos/src/main/resources/config
management.security.enabled=false

指向配置所在的本地文件夹
这是名为ever.properties的配置文件:

server=Hello world

整个项目结构:

拜托。。。通过浏览器访问此文件属性的正确url是什么?

我发现了一些教程,人们可以通过这种方式访问属性文件。从这里可以看出,即使我也做到了一次(在这个项目中,文件名为newsservice-config.properties,但配置是相同的)

有谁能解释一下这一切背后的逻辑,而不使用任何git?

qjp7pelc

qjp7pelc1#

我认为您需要编写代码来列出您的属性,然后在网页上显示此metod返回的数据。我们采用以下方法:

private Map<String, Map<String, String>> getEnvironmentPropertyGroups() {
    MutablePropertySources propertySources = ((AbstractEnvironment) env).getPropertySources();

    Map<String, Map<String, String>> propertyGroups = new LinkedHashMap<>();

    propertySources.forEach(propertySource -> {
        if (propertySource instanceof EnumerablePropertySource) {
            Map<String, String> properties = new LinkedHashMap<>();
            EnumerablePropertySource enumerablePropertySource = (EnumerablePropertySource) propertySource;
            for (String key : enumerablePropertySource.getPropertyNames()) {
                Object value = enumerablePropertySource.getProperty(key);
                properties.put(key, getValueForKey(key, value));
            }

            propertyGroups.put(propertySource.getName(), properties);
        }
    });
    return propertyGroups;
}

相关问题