将SpringBoot .JAR文件上传到Google App Engine会导致502 NGIX错误网关错误

时间:2019-05-22 17:21:54

标签: spring spring-boot google-app-engine google-cloud-platform

当我执行打包的.jar文件时,我的SpringBoot-MyBatis-MySQL API正在计算机环境中运行。

现在,当我将其上传到Google App Engine时,它显示为502 Bad Gateway。 为什么会这样?

一些可能重要的相关文件

application.properties

server.port = 8085

spring.datasource.url= jdbc:mysql://localhost:3306/sakila
spring.datasource.username = user
spring.datasource.password = password
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

spring.datasource.dbcp2.test-while-idle= true
spring.datasource.dbcp2.validation-query= select 1

我希望将我的API部署在云上,以便可以在任何地方访问它。

在本地主机上工作:

enter image description here

Google App Engine,云上的错误:

enter image description here

0 个答案:

没有答案