Saving file with marshaller

File appears in file system only after I stop the application, but I would like to use the file immediately after saving it. Fix?
@Service
public class XMLTransformationService {

public void transformToXML(Airlines airlines) {
JAXBContext jaxbContext = null;
try {
jaxbContext = JAXBContext.newInstance(Airlines.class);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

File file = new File("src/main/resources/output.xml");
jaxbMarshaller.marshal(airlines, file);

} catch (JAXBException e) {
System.out.println(e.getCause());
}
}
}
@Service
public class XMLTransformationService {

public void transformToXML(Airlines airlines) {
JAXBContext jaxbContext = null;
try {
jaxbContext = JAXBContext.newInstance(Airlines.class);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);

File file = new File("src/main/resources/output.xml");
jaxbMarshaller.marshal(airlines, file);

} catch (JAXBException e) {
System.out.println(e.getCause());
}
}
}
2 Replies
JavaBot
JavaBot3w ago
This post has been reserved for your question.
Hey @matyi a gore! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
JavaBot
JavaBot3w ago
Post Closed
This post has been closed by <@1176217325389742170>.

Did you find this page helpful?