有没有一种方法可以将值从YAML映射到对象列表

时间:2019-04-04 09:30:14

标签: java micronaut

我正在尝试从YAML文件中创建服务器对象列表,就像我在post上看到的那样,但是使用了Micronaut。

我的YAML文件具有以下配置:

server:
    -
        name: "Server 1"
        flow: "both"
        environment: "test"
    -
        name: "Server 2"
        flow: "both"
        environment: "production"

我的POJO是:

package dev.renansouza.server;

public class Server {

    private String name;
    private String flow;
    private String environment;

    public Server() {}

    public Server(String name, String flow, String environment) {
        this.name = name;
        this.flow = flow;
        this.environment = environment;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getFlow() {
        return flow;
    }

    public void setFlow(String flow) {
        this.flow = flow;
    }

    public String getEnvironment() {
        return environment;
    }

    public void setEnvironment(String environment) {
        this.environment = environment;
    }

    @Override
    public String toString() {
        return "Servers -> name: " + name + " flow: " + flow + " environment: " + environment;
    }

}

我的服务是:

package dev.renansouza.server;

import io.micronaut.context.annotation.ConfigurationProperties;

import javax.annotation.PostConstruct;
import javax.inject.Singleton;

import java.util.ArrayList;
import java.util.List;

import static dev.renansouza.server.ServerService.PREFIX;

@Singleton
@ConfigurationProperties(PREFIX)
public class ServerService {

    public static final String PREFIX = "server";

    private List<Server> networkRules = new ArrayList<>();

    @PostConstruct
    public void init() {
        for(Server s : this.getServers()) {
            System.out.println(s);
        }
    }

    public List<Server> getServers() {
        return this.networkRules;
    }
}

我在System.out.println行上设置了一个断点,并以调试方式启动了应用程序,但是什么也没发生。

我需要做一些额外的配置吗?

1 个答案:

答案 0 :(得分:2)

查看位于https://github.com/jeffbrown/renansouzaproperties的项目。

https://github.com/jeffbrown/renansouzaproperties/blob/master/src/main/resources/application.yml

micronaut:
    application:
        name: renansouzaproperties
server:
    Server 1:
        flow: both
        environment: test
    Server 2:
        flow: both
        environment: production

https://github.com/jeffbrown/renansouzaproperties/blob/master/src/main/java/renansouzaproperties/Server.java

package renansouzaproperties;

import io.micronaut.context.annotation.EachProperty;
import io.micronaut.context.annotation.Parameter;

@EachProperty("server")
public class Server {
    private String name;
    private String flow;
    private String environment;

    public Server(@Parameter String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getFlow() {
        return flow;
    }

    public void setFlow(String flow) {
        this.flow = flow;
    }

    public String getEnvironment() {
        return environment;
    }

    public void setEnvironment(String environment) {
        this.environment = environment;
    }

    @Override
    public String toString() {
        return "Servers -> name: " + name + " flow: " + flow + " environment: " + environment;
    }
}

https://github.com/jeffbrown/renansouzaproperties/blob/master/src/main/java/renansouzaproperties/DemoController.java

package renansouzaproperties;

import io.micronaut.http.annotation.Controller;
import io.micronaut.http.annotation.Get;
import io.micronaut.http.HttpStatus;

import java.util.List;

@Controller("/demo")
public class DemoController {

    private List<Server> serverList;

    public DemoController(List<Server> serverList) {
        this.serverList = serverList;
    }

    @Get("/")
    public HttpStatus index() {
        for(Server server: serverList) {
            System.out.println(server);
        }
        return HttpStatus.OK;
    }
}

如果您启动应用程序并将请求发送到http://localhost:8080/demo,您将看到如下所示的输出,表明已创建所需的Server实例:

Servers -> name: server 1 flow: both environment: test
Servers -> name: server 2 flow: both environment: production

我意识到您的问题明确询问了Yaml中的列表,并且此示例未使用列表,但从其他注释中可以看出,您发布的示例代码似乎并不真正需要Yaml中的列表。如果您确实想要yaml中的列表,那么也可以使用该方法。让我知道您是否真的需要。

我希望有帮助。

相关问题