我已经使用Gradle的build/bootJar
创建了Spring Boot应用程序.jar文件,然后将其部署到Elastic Beanstalk。但是当我对大数据执行POST请求时,会收到以下错误消息:
<html>
<head>
<title>413 Request Entity Too Large</title>
</head>
<body bgcolor="white">
<center>
<h1>413 Request Entity Too Large</h1>
</center>
<hr>
<center>nginx/1.14.1</center>
</body>
</html>
我尝试将client_max_body_size 50M;
添加到位于myconf.conf
的{{1}}文件中,然后重建并重新部署.jar文件,但这不起作用。
我还尝试过移动相同的{project_root}/.ebextensions/nginx/conf.d/myconf.conf
文件夹.ebextensions
,但该文件夹也不起作用。
还有什么我可以尝试的吗?我想知道使用{proejct_root}/src
创建.jar是否正确。