在Spring Boot的YAML配置文件中,你可以使用復(fù)雜數(shù)據(jù)結(jié)構(gòu),例如列表(List)、字典(Map)和對(duì)象。以下是一些示例:
my:
list:
- item1
- item2
- item3
在這個(gè)例子中,my.list
是一個(gè)包含三個(gè)元素的列表。
my:
map:
key1: value1
key2: value2
key3: value3
在這個(gè)例子中,my.map
是一個(gè)包含三個(gè)鍵值對(duì)的字典。
my:
object:
property1: value1
property2: value2
在這個(gè)例子中,my.object
是一個(gè)包含兩個(gè)屬性的對(duì)象。
my:
nested:
list:
- item1
- item2
map:
key1: value1
key2: value2
object:
property1: value1
property2: value2
在這個(gè)例子中,my.nested
是一個(gè)包含列表、字典和對(duì)象的嵌套結(jié)構(gòu)。
要在Java代碼中訪問這些配置值,你需要?jiǎng)?chuàng)建相應(yīng)的實(shí)體類并使用@ConfigurationProperties
注解。例如:
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.List;
import java.util.Map;
@Component
@ConfigurationProperties(prefix = "my")
public class MyProperties {
private List<String> list;
private Map<String, String> map;
private MyObject object;
// Getters and setters
public static class MyObject {
private String property1;
private String property2;
// Getters and setters
}
}
然后,你可以在其他類中注入MyProperties
并訪問這些配置值:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class MyService {
@Autowired
private MyProperties myProperties;
public void doSomething() {
System.out.println("List: " + myProperties.getList());
System.out.println("Map: " + myProperties.getMap());
System.out.println("Object: " + myProperties.getObject());
}
}
這樣,你就可以在Spring Boot YAML配置文件中使用復(fù)雜數(shù)據(jù)結(jié)構(gòu)了。