我在aws amplify中部署react js应用程序时遇到问题。
当react应用程序向后端(spring boot)发送post请求时,我收到“405 method not allowed”
任何帮助!
springboot项目部署在ec2中。
@PostMapping("/post")
@CrossOrigin(origins = "https://xxx.amplifyapp.com/")
public HttpStatus post(@RequestBody) {
.......
}
在react中,我使用createproxymiddleware:
const {createProxyMiddleware} = require('http-proxy-middleware');
module.exports = function(app) {
app.use('/api', createProxyMiddleware({ target: 'http://ec2-springboot.com:8082/'}));
}
暂无答案!
目前还没有任何答案,快来回答吧!