简体   繁体   English

Payara 5上的Spring-Boot Rest Controller会忽略JAXB批注

[英]Spring-Boot Rest Controller on Payara 5 ignores JAXB annotations

I have a problem with Spring-Boot application that I want to deploy to Payara 5. I have visited Spring Initializr page, I've filled group, artifact, and added Web dependency. 我要部署到Payara 5的Spring-Boot应用程序有问题。我访问了Spring Initializr页面,填充了组,工件和添加了Web依赖性。 To make it possible to deploy application to Payara, I've removed dependencies to Tomcat, I've adjusted @SpringBootApplication annotated class, to extend SpringBootServletInitializer. 为了能够将应用程序部署到Payara,我删除了对Tomcat的依赖,调整了@SpringBootApplication带注释的类,以扩展SpringBootServletInitializer。 And I've created very simple RestController that returns very simple Pojo. 而且我创建了非常简单的RestController,它返回了非常简单的Pojo。

Here is the code: pom.xml: 这是代码:pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.1.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.sample</groupId>
<artifactId>rest-payara</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>rest-glassfish</name>
<description>Demo project for Spring Boot</description>
<packaging>war</packaging>

<properties>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <version>2.1.1.RELEASE</version>
        <exclusions>
            <exclusion>
                <artifactId>spring-boot-starter-tomcat</artifactId>
                <groupId>org.springframework.boot</groupId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <artifactId>spring-boot-starter-tomcat</artifactId>
        <groupId>org.springframework.boot</groupId>
        <version>2.1.1.RELEASE</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <version>2.1.1.RELEASE</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
</project>

Application class: 应用类别:

package com.sample.restpayara;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;

@SpringBootApplication
public class RestPayaraApplication extends SpringBootServletInitializer {

    public static void main(String[] args) {
        SpringApplication.run(RestPayaraApplication.class, args);
    }

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(RestPayaraApplication.class);
    }
}

Rest controller: 休息控制器:

package com.sample.restpayara;

import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class RestApiController {

  @GetMapping(value = "/sample-pojo", produces = { MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE })
  public SamplePojo getSamplePojo() {
    return new SamplePojo("Sample pojo");
  }
}

Pojo: POJO:

package com.sample.restpayara;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement(name = "PojoRoot")
public class SamplePojo {

  @XmlElement(name = "pojoContent")
  private String content;

  public SamplePojo() {
  }

  public SamplePojo(String content) {
    this.content = content;
  }

  public String getContent() {
    return content;
  }
}

When I run this application with 当我用

mvn spring-boot:run

Everything works like I want, CURL request: 一切都按我想要的方式进行,CURL请求:

curl -k -i -X GET "http://localhost:8080/sample-pojo" -H "accept: application/xml" -H "Content-Type: application/xml"

Returns: 返回:

HTTP/1.1 200 
Content-Type: application/xml
Transfer-Encoding: chunked
Date: Fri, 28 Dec 2018 09:26:08 GMT

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><PojoRoot><pojoContent>Sample pojo</pojoContent></PojoRoot>

However when I deploy this code to Payara and I do CURL request: 但是,当我将此代码部署到Payara并执行CURL请求时:

curl -k -i -X GET "https://my-payara-domain.local:8181/rest-payara-0.0.1-SNAPSHOT/sample-pojo" -H "accept: application/xml" -H "Content-Type: application/xml"

i receive response: 我收到回应:

HTTP/2 200 
content-type: application/xml;charset=UTF-8

<SamplePojo><content>Sample pojo</content></SamplePojo>

And here is the problem - why are JAXB annotations ignored on Payara and what do I have to do to make them work? 这就是问题所在-为什么在Payara上会忽略JAXB注释,我该怎么做才能使其正常工作?

For anyone ever fighting with similar problem - the root cause of the issue was related to the fact, that MappingJackson2HttpMessageConverter was kicking in on Payara 5, while Jaxb2RootElementHttpMessageConverter was not there. 对于曾经遇到类似问题的人-问题的根本原因与这一事实有关,即MappingJackson2HttpMessageConverter正在Payara 5上启动,而Jaxb2RootElementHttpMessageConverter不在那儿。 I found a solution for my problem by providing a configuration: 通过提供配置,我找到了解决问题的方法:

package com.sample.restpayara;

import java.util.List;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;

@Configuration
public class JaxbSupportConfiguration extends WebMvcConfigurationSupport {

  @Override
  public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
    converters.add(new Jaxb2RootElementHttpMessageConverter());
    converters.add(new MappingJackson2HttpMessageConverter());
  }
}

Hope it helps someone in the future, for me it took 1,5 day to figure it out ;( 希望它对以后的人有所帮助,对我而言,花了1.5天的时间才弄清楚;(

================================= =================================

UPDATE: First solution did turn on Web MVC and caused static files not to be served anymore. 更新:第一个解决方案确实打开了Web MVC,并导致不再提供静态文件。 I've managed to find a final solution by providing configuration: 通过提供配置,我设法找到了最终解决方案:

package com.sample.restpayara;

import java.util.Arrays;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.context.annotation.Bean;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.http.converter.xml.Jaxb2RootElementHttpMessageConverter;

@SpringBootApplication
public class RestPayaraApplication extends SpringBootServletInitializer {

    public static void main(String[] args) {
        SpringApplication.run(RestPayaraApplication.class, args);
    }

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(RestPayaraApplication.class);
    }

    @Bean
    public HttpMessageConverters converters() {
        return new HttpMessageConverters(true, Arrays.asList(
                new MappingJackson2HttpMessageConverter(),
                new Jaxb2RootElementHttpMessageConverter())
        );
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM