1
是否有一種簡單的方法來執行此操作。我有一些類註解與如何在IntelliJ中爲JaxB Java文件生成XSD
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
我想查找在同一時間在互聯網上。
是否有一種簡單的方法來執行此操作。我有一些類註解與如何在IntelliJ中爲JaxB Java文件生成XSD
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
我想查找在同一時間在互聯網上。
如果沒有辦法在的IntelliJ做到這一點,那麼很容易使用JAXB運行時API做的事:
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
SchemaOutputResolver sor = new MySchemaOutputResolver();
jaxbContext.generateSchema(sor);
而且
private class MySchemaOutputResolver extends SchemaOutputResolver {
public Result createOutput(String namespaceURI, String suggestedFileName) throws IOException {
File file = new File(suggestedFileName);
StreamResult result = new StreamResult(file);
result.setSystemId(file.toURI().toURL().toString());
return result;
}
}
更多信息:
您可以使用schemagen