jaxb を使用して生成された xml ファイルがあります。ただし、standalone = yes は xml ドキュメントには表示されません。問題はありますか。
使用したコードは
JAXBContext context = JAXBContext.newInstance(object.getClass());
Marshaller marshall = context.createMarshaller();
marshall.setProperty(JAXB_FORMATTED_OUTPUT, true);
marshall.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, schema_location);
marshall.marshal(object, outputstream);