YamlBeans
Overview
YAMLIt is a humanized data format, using YAML to replace XML and properties files, which can get more expressiveness (supports structures such as lists, maps, anchors, etc.), and easier manual editing. YamlBeans makes it easier to convert (serialize and deserialize) between Java objects and YAML formats.
File add dependencies
yamlbeans
1.08
BasicDeserialization
YamlReader is used to deserialize YAML format data into Java objects. Below is a map containing 4 entities, the last entity item phone numbers is another List collection containing 2 items, and each item is a Map structure.
name: Nathan Sweet
age: 28
address: 4011 16th Ave S
phone numbers:
- name: Home
number: 206-555-5138
- name: Work
number: 425-555-2306
The "read()" method can be used to read the YAML object described in the file and deserialize it to the corresponding HashMaps, ArrayLists, and Strings. Because we already know that the object defined in the YAML file in the example above is a map, in the example below, we can directly convert it to a java object and use it.
YamlReader reader = new YamlReader(new FileReader(""));
Object object = ();
(object);
Map map = (Map)object;
(("address"));
Multiple objects
A YAML format file can contain multiple YAML objects, and multiple YAML objects are separated by --- (the first one can be omitted)
name: Nathan Sweet
age: 28
---
name: Some One
age: 25
In the following example, when each time the read() method in the YamlReader class is called in the while loop, the YAML objects in the corresponding order in the file will be deserialized into a Java object with the corresponding structure. The following code will output the strings "28" and "25" in succession:
YamlReader reader = new YamlReader(new FileReader(""));
while (true) {
Map contact = ();
if (contact == null) break;
(("age"));
}
Deserialize other classes
There are two ways to deserialize other custom data formats except HashMaps, ArrayLists and Strings, such as the following YAML file and Java class:
name: Nathan Sweet
age: 28
public class Contact {
public String name;
public int age;
}
Pass a class in the entry parameter of the "read()" method, so that the YamlReader can be deserialized directly to the specified class:
YamlReader reader = new YamlReader(new FileReader(""));
Contact contact = ();
();
The above YamlReader creates an instance object and assigns values to the "name" and "age" fields, and the YamlReader will convert the value of "age" in YAML to int. If age is not type int, deserialization will fail.
In addition to the above deserialization method, you can also use the Add! fully qualified class name method to directly specify the type in YAML:
!
name: Nathan Sweet
age: 28
Serialize objects
The YamlWriter class is used to serialize Java objects into YAML format. And the "write()" method will automatically recognize and process public fields and getter methods (generally, private attributes will generate getter methods).
Contact contact = new Contact();
= "Nathan Sweet";
= 28;
YamlWriter writer = new YamlWriter(new FileWriter(""));
(contact);
();
Output:
!
name: Nathan Sweet
age: 28
The above! part will be automatically output as needed so that the YamlReader class can rebuild the corresponding Java object when deserialized. However, when serializing ArrayList, no format content similar to! will be output, because YamlReader will use ArrayList by default.
List list = new ArrayList();
("moo");
("cow");
- moo
- cow
But if the interface implementation of List is LinkedList, not ArrayList (default), then the YamlWriter class will output, for example:
List list = new LinkedList();
("moo");
("cow");
!
- moo
- cow
Note that it is not advisable to subclass Collection or Map. YamlBeans will only serialize the collection or map and its elements, not any additional fields.
Note that it is not advisable to set a collection or Map as a subclass node in yaml. YamlBeans will only serialize the collection or the Map and its elements, and will not serialize other fields.
Complex structure
YamlBeans can serialize any object.
public class Contact {
public String name;
public int age;
public List phoneNumbers;
}
public class Phone {
public String name;
public String number;
}
friends:
- !
name: Bob
age: 29
phoneNumbers:
- !
name: Home
number: 206-555-1234
- !
name: Work
number: 206-555-5678
- !
name: Mike
age: 31
phoneNumbers:
- !
number: 206-555-4321
enemies:
- !
name: Bill
phoneNumbers:
- !
name: Cell
number: 206-555-1234
The above is a complex Map structure composed of a List collection of Contact class, and the Contact class also contains the List property of phoneNumbers. In addition, the fields declared by the public type can also be attributes of the java bean (rather than just the private type field corresponding to the getter method).
Tag intercept
!This form of YAML tags may sometimes be very long, which will make the YAML format appear chaotic and unfavorable for reading. At this time, you can specify an alternative tag to the class instead, instead of using the full class name of the class.
YamlWriter writer = new YamlWriter(new FileWriter(""));
().setClassTag("contact", );
(contact);
();
The following output no longer contains the full class name of the Contact class.
!contact
name: Nathan Sweet
age: 28
List and Map
When reading or writing a List or Map, YamlBeans sometimes doesn't know what type of object should be in the List or Map, so it outputs a tag similar to!.
!
name: Bill
phoneNumbers:
- !
number: 206-555-1234
- !
number: 206-555-5678
- !
number: 206-555-7654
This will lead to worse readability of YAML. To improve readability, you can specify the type to which the field belongs in the List or Map object, like this:
YamlWriter writer = new YamlWriter(new FileWriter(""));
().setPropertyElementType(, "phoneNumbers", );
(contact);
();
Now, YamlBeans knows what the type of the "phoneNumbers" field is, so there is no extra output of extra tags.
!
name: Bill
phoneNumbers:
- number: 206-555-1234
- number: 206-555-5678
- number: 206-555-7654
The type of value in the Map can be specified according to the expected situation, but the key in the Map is always a string type.
Anchor point
When an object's structure contains multiple references to other same objects, an anchor can be set so that the referenced object only needs to be defined once in YAML.
oldest friend:
&1 !contact
name: Bob
age: 29
best friend: *1
In the map above, the "oldest friend" and "best friend" fields refer to the same object. When deserializing the build object, the YamlReader automatically handles anchor points in YAML. Meanwhile, by default, YamlWriter will automatically output anchor points when serializing objects.
Contact contact = new Contact();
= "Bob";
= 29;
Map map = new HashMap();
("oldest friend", contact);
("best friend", contact);
Make duplicate fields effective
By default, YAML ignores duplicate fields when parsing. For example, the following situations:
name: Nathan Sweet
age: 28
address:
line1: 485 Madison Ave S
line1: 711 3rd Ave S
line2: NYC
The above YAML will assign the value of the line1 field of address to 711 3rd Ave S instead of 485 Madison Ave S. This is because the field line1 in YAML above is repeated, so the last value of line1 will be preserved. However, if your business logic requires that duplicate fields take effect, you can set it in the YamlConfig class. Here is the setup method:
try {
YamlConfig yamlConfig = new YamlConfig();
(false); // default value is true
YamlReader reader = new YamlReader(new FileReader(""), yamlConfig);
Object object = ();
(object);
Map map = (Map)object;
(("address"));
} catch (YamlException ex) {
();
// or handle duplicate key case here according to your business logic
}
The above code won't print anything, but will throw a YamlReaderException on line 5abnormalSay Duplicate key found 'line1'
Architecture
YAML's tokenizer, parser, emitterComponentsIt is based on the JvYAML project. These functions have been refactored, bug fixes, etc. Due to the complexity of JvYAML, the rest is not used. YamlBeans strives to achieve simple and feasible things - making it easier to operate the YAML data format using Java.
YamlBeans supports YAML versions 1.0 and 1.1.
Usage experience
Cancel automatic addition! Fully qualified class name
Add a separator
FileWriter fileWriter = new FileWriter("", true);
YamlWriter yamlWriter = new YamlWriter(fileWriter);
().(false); // Cancel add fully qualified class name
(tpl);
("---\n"); // Delimiter
();