问题:
我们有一个工作的 Spring Boot 后端服务器(Java 11,Spring Boot 2.2.4.RELEASE)和一个 React 前端,如果通过IntelliJ运行,它可以在Docker容器中完美运行。java -jar app.jar
但是,如果它通过 Eclipse(在 Windows Server 2016 上运行)运行,则在尝试发送带有 JSON 正文的 POST 时,会遇到以下错误:
2020-03-09 15:09:52.515 WARN 218960 --- [nio-8080-exec-1] .c.j.MappingJackson2HttpMessageConverter : Failed to evaluate Jackson deserialization for type [[simple type, class xxx.xxx.xxx.xxx.xxx.xxx.xxx]]: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Invalid type definition for type `xxx.xxx.xxx.xxx.xxx.xxx.xxx`: Argument #0 has no property name, is not Injectable: can not use as Creator [constructor for xxx.xxx.xxx.xxx.xxx.xxx.xxx, annotations: {interface com.fasterxml.jackson.annotation.JsonCreator=@com.fasterxml.jackson.annotation.JsonCreator(mode=DEFAULT)}]
2020-03-09 15:09:52.517 WARN 218960 --- [nio-8080-exec-1] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported]
无论通过前端代码设置的标头如何,都会发生此错误。因此,通过设置Content-Type: application/json,会发生相同的错误(请参阅下面的标题)。
有没有人遇到过类似的事情只发生在 Eclipse 中?
我已经检查了编码(在 Eclipse 中将所有内容设置为 UTF-8),并确保所有环境在 IntelliJ 和 Eclipse 中都使用相同的 Java 版本(我使用的是通过 SDKMan 安装的 AdoptOpenJDK 11.0.6.hs-adpt)。
编译的类文件看起来相同。运行应用程序时的类路径包含相同的杰克逊库(总体上看起来非常相似)。
我相信它与 Eclipse 如何运行应用程序有关。有谁知道为什么会观察到这种奇怪的行为?为什么只使用 Eclipse?既然我们有一些开发人员使用 Eclipse,我们该如何解决呢?
有关请求的更多信息:
通过浏览器看到的请求标头:
POST /server/configure HTTP/1.1
Host: localhost:8080
Connection: keep-alive
Content-Length: 510
Accept: application/json, text/plain, */*
Sec-Fetch-Dest: empty
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36
Content-Type: application/json
Origin: http://localhost:3000
Sec-Fetch-Site: same-site
Sec-Fetch-Mode: cors
Referer: http://localhost:3000/
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9,de-DE;q=0.8,de;q=0.7
和回应:
{"timestamp":"2020-03-09T14:00:27.285+0000","status":415,"error":"Unsupported Media Type","message":"Content type 'application/json;charset=UTF-8' not supported","path":"/server/configure"}
和响应头:
HTTP/1.1 415
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Access-Control-Allow-Origin: http://localhost:3000
Content-Type: application/json
Transfer-Encoding: chunked
Date: Mon, 09 Mar 2020 13:53:05 GMT
Keep-Alive: timeout=60
Connection: keep-alive
有关该应用程序的更多信息:
控制器如下(简化):
package xxx.xxx.xxx.xxx.xxx.xxx;
...
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
...
@Controller
@RequestMapping("/server")
@CrossOrigin(origins = "http://localhost:3000")
public class Controller {
private someService SomeService;
@Autowired
public Controller(SomeService someService) {
this.someService= someService;
}
@PostMapping(value = "/configure", consumes = MediaType.APPLICATION_JSON_VALUE)
@ResponseBody
public String configureConnection(@RequestBody ConnectionConfiguration connectionConfiguration) throws MalformedURLException {
String serverId = someService.configureConnection(connectionConfiguration);
return serverId;
}
}
ConnectionConfiguration 类如下(这里显示的属性较少):
package xxx.xxx.xxx.xxx.xxx.xxx;
import com.fasterxml.jackson.annotation.JsonCreator;
public class ConnectionConfiguration {
private String someProperty;
@JsonCreator
public ConnectionConfiguration(String someProperty) {
this.someProperty= someProperty;
}
public String getSomeProperty() {
return someProperty;
}
}
关于项目结构,我们有一个根文件夹,其中包含一个后端和一个前端文件夹。每个(根、后端和前端)都包含一个 build.gradle 文件,通过根文件夹中的 build.gradle 链接在一起。通过这样做,我们可以进行构建前端的生产构建,将静态 HTML 和 JavaScript 文件复制到后端的资源/静态文件夹,然后构建 Spring Boot jar。然后,在生产模式下,前端通过 Spring Boot 的 Tomcat 交付。
对于开发,我们通常通过 IDE 为前端启动一个 Webpack 开发服务器,npm run start
并从 Application.java 类中启动 Spring Boot 应用程序,该类包含一个通过 IDE 的 main 方法:
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}