Я хочу сгенерировать Java-класс из xsd, а затем с помощью resttemplate его разархивировать.Я выясняю, как это сгенерировать.Но после того, как я получил ответ, я повторяю шаблон с ошибкой.
Это мой xsd:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="GameIdentifier">
<xs:complexType>
<xs:sequence>
<xs:element name="UniqueGameID" type="xs:string" maxOccurs="1" minOccurs="1"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
Вот так выглядит мой pom.xml
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.0.RELEASE</version>
<relativePath/>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.2</version>
<type>maven-plugin</type>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.11</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<outputDirectory>src/main/java</outputDirectory>
<clearOutputDir>false</clearOutputDir>
<packageName>swe.game.model</packageName>
<schemaDirectory>src/main/resources/xsd/</schemaDirectory>
<schemaFiles>gameId.xsd</schemaFiles>
<schemaFiles>gameState.xsd</schemaFiles>
<schemaFiles>halfMap.xsd</schemaFiles>
<schemaFiles>playerRegistration.xsd</schemaFiles>
<schemaFiles>responseEnvelope.xsd</schemaFiles>
<schemaFiles>responseEnvelopeUniqueId.xsd</schemaFiles>
</configuration>
</plugin>
</plugins>
</build>
Так выглядит мой сгенерированный класс:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"uniqueGameID"
})
@XmlRootElement(name = "GameIdentifier")
public class GameIdentifier {
@XmlElement(name = "UniqueGameID", required = true)
protected String uniqueGameID;
/**
* Gets the value of the uniqueGameID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUniqueGameID() {
return uniqueGameID;
}
/**
* Sets the value of the uniqueGameID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUniqueGameID(String value) {
this.uniqueGameID = value;
}
}
И вот как я это называю:
приватный статический финал Logger log = LoggerFactory.getLogger (NetworkManager.class);
public void gameId () {GameIdentifier gameIdentifierMessage = null;
try {
URL url = new URL(BASE + PORT + "game/new");
log.info("" + url.toURI());
RestTemplate restTemplate = new RestTemplate();
gameIdentifierMessage = restTemplate.getForObject(url.toURI(), GameIdentifier.class);
log.info(gameIdentifierMessage.toString());
} catch (Exception e) {
log.error(e.getLocalizedMessage());
}
И это мои журналы
http://****************/game/new HTTP GET http://swe.wst.univie.ac.at:18235/game/new Accept = [application / xml, text / xml, application / * +xml] Ответ 200 OK Чтение [swe.game.model.GameIdentifier] как «application / xml» Ошибка при извлечении ответа для типа [class swe.game.model.GameIdentifier] и типа содержимого [application / xml];вложенное исключение: org.springframework.http.converter.HttpMessageNotReadableException: не удалось отменить сортировку для [class swe.game.model.GameIdentifier]: неожиданный элемент (uri: "", local: "uniqueGameIdentifier").Ожидаемые элементы: <{} GameIdentifier>;Вложенным исключением является javax.xml.bind.UnmarshalException: неожиданный элемент (uri: "", local: "uniqueGameIdentifier").Ожидаемые элементы: <{} GameIdentifier>