spring 从Java Object创建XML

ezykj2lf  于 2024-01-05  发布在  Spring
关注(0)|答案(1)|浏览(280)

我尝试从Java对象创建XML,但出现错误“在模块路径或类路径上未找到JAXB-API的实现”。请帮助我解决错误。

  1. @RequestMapping(value = "/writeToFile",method = RequestMethod.POST)
  2. public String writeFileXML(@RequestBody Customer customer) {
  3. try {
  4. File file=new File("D:\\vendorfile\\customer.xml");
  5. FileWriter fileWriter=new FileWriter(file);
  6. JAXBContext jaxbContext=JAXBContext.newInstance(Customer.class);
  7. Marshaller marshaller=jaxbContext.createMarshaller();
  8. marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
  9. marshaller.marshal(customer, fileWriter);
  10. return "Marshaller successfull";
  11. }catch(IOException ioException) {
  12. return ioException.getMessage();
  13. }catch(Exception ex) {
  14. return ex.getMessage();
  15. }
  16. }

个字符

vmdwslir

vmdwslir1#

您缺少了JAXB-API依赖项(因为您只定义了JAXB-API的依赖项,并且正如您得到的错误消息所指出的那样)。
从JDK 9开始,与jaxb相关的类不再是JDK的一部分
只需添加以下内容即可解决错误

  1. <dependency>
  2. <groupId>org.glassfish.jaxb</groupId>
  3. <artifactId>jaxb-runtime</artifactId>
  4. <version>2.3.9</version>
  5. </dependency>

字符串

相关问题