(spring-boot)http到https重定向,405方法不允许消息

时间:2017-10-16 07:30:04

标签: amazon-web-services spring-mvc redirect spring-boot elastic-beanstalk

我使用Spring引导和http来使用AWS中的弹性beanstalk进行https重定向 所以我请求http然后重定向https,并通过https协议重新请求...
在https中,一切正常,
但是在http中,get方法(在控制器中)是可以的,但是post方法不是没有...
for k, y in dictionaryParm.items(): value = list(y) value.sort() output = ([k]+ value) for it in output: print (it)

我的控制器代码
dictionaryTest = dict() dictionaryTest["Key 1"] = ("234","123","345") dictionaryTest["Key 2"] = ("456","678","567") printDictionary(dictionaryTest)

我试过this answer,但它对我没有帮助......

我该如何修复它??

1 个答案:

答案 0 :(得分:0)

待命律师

这是网络服务器(nginx,apache等)的问题,而不是春季启动 我使用301重定向,但301从post更改为get 所以,我必须使用308而不是301 308不允许从post更改为get,
但弹性豆茎使用nginx v1.12.1
和1.12.1不支持308,1.13.0 support 308

所以我应该更新nginx ......