正如我在这篇文章中看到的,我正试图从YAML文件创建一个服务器对象列表,但是使用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;
}
}
我在系统上设置了一个断点。出来println行并以调试方式启动应用程序,但什么也没发生。
我需要做任何额外的配置吗?
查看项目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您将看到如下输出,表明已创建所需的服务器
实例:
Servers -> name: server 1 flow: both environment: test
Servers -> name: server 2 flow: both environment: production
我意识到,您的问题明确地询问了yaml中的列表,本例没有使用列表,但从其他注释和您发布的示例代码来看,您似乎并不真正需要yaml中的列表。如果您真的希望在yaml中列出一个列表,那么也有一种方法可以做到这一点。如果这真的是你需要的,请告诉我。
我希望这有帮助。
我正在尝试在我的应用程序中注入列表。我的Spring Boot应用程序中Java对象列表的yml文件。 我已经看到了其他类似问题的一些答案,这些问题将Yaml中的列表映射到Spring Boot中的对象列表,但我有不同的输出错误。 我的YAML文件 我还创建了Bucket类 以及我的配置类,我在其中将列表注入YAML 当Spring Boot开始执行时,我出现以下错误: 我也尝试过简单的字符串列表
YAML文件: 配置类: 我希望@value注释允许我注入相应的属性值,但这似乎不起作用(注入'id'字段似乎工作得很好)。
假设我有以下课程:
我正在将< code > keydeselliser 注册到< code>ObjectMapper。读完< code>JSON后,我想注销这个模块。因为我的< code>ObjectMapper是静态的,我不想在任何其他地方使用这个模块。
假设我有这样的映射: 现在,我需要将子列表映射到子列表,但它们都有相同的父对象。我希望这样做: 但不管用,有机会做吗?