我试图以最精确的方式遵循此文档:
https://beam.apache.org/documentation/sdks/javadoc/2.0.0/org/apache/beam/sdk/io/xml/XmlIO.html
请在下面找到我的代码:
public static void main(String args[])
{
DataflowPipelineOptions options=PipelineOptionsFactory.as(DataflowPipelineOptions.class);
options.setTempLocation("gs://balajee_test/stagging");
options.setProject("test-1-130106");
Pipeline p=Pipeline.create(options);
PCollection<XMLFormatter> record= p.apply(XmlIO.<XMLFormatter>read()
.from("gs://balajee_test/sample_3.xml")
.withRootElement("book")
.withRecordElement("author")
.withRecordElement("title")
.withRecordElement("genre")
.withRecordElement("price")
.withRecordElement("description")
.withRecordClass(XMLFormatter.class)
);
record.apply(ParDo.of(new DoFn<XMLFormatter,String>(){
@ProcessElement
public void processElement(ProcessContext c)
{
System.out.println(c.element().getAuthor());
}
}));
p.run();
}
我得到&#39; null &#39;每个XML组件的值。您能否查看我的代码并建议我采取纠正措施?
package com.bitwise.cloud;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlRootElement(name = "book")
@XmlType(propOrder = {"author", "title","genre","price","description"})
public class XMLFormatter {
private String author;
private String title;
private String genre;
private String price;
private String description;
public XMLFormatter() { }
public XMLFormatter(String author, String title,String genre,String price,String description) {
this.author = author;
this.title = title;
this.genre = genre;
this.price = price;
this.description = description;
}
@XmlElement
public void setAuthor(String author) {
this.author = author;
}
public String getAuthor() {
return author;
}
@XmlElement
public void setTitle(String title) {
this.title = title;
}
public String getTitle() {
return title;
}
@XmlElement
public void setGenre(String genre) {
this.genre = genre;
}
public String getGenre() {
return genre;
}
@XmlElement
public void setPrice(String price) {
this.price = price;
}
public String getPrice() {
return price;
}
@XmlElement
public void setDescription(String description) {
this.description = description;
}
public String getDescription() {
return description;
}
}
答案 0 :(得分:1)
XmlIO.Read PTransform不支持提供多个记录元素(作者,标题,流派等)。您必须提供单个根元素和记录元素,并且XML文档必须包含具有相同记录元素的记录。请参阅以下位置中给出的示例。