将Spring 4.3.3升级到Spring 5.0.1获取错误

时间:2018-01-19 10:34:45

标签: spring

有人可以帮我解决这个问题,因为我收到了这个错误并尝试了所有可能的方法,并尝试使用不同的选项进行检查。

我的应用程序在Spring 4.3.3中运行时没有错误,当我升级到Spring 5.0.1时,它会出现以下错误:

public function destroy($id)
{
    $poll = Poll::findOrFail($id);

    foreach ($poll->answers as $answer) 
    {
        $answer->poll()->dissociate();
        $answer->save();
    }

    foreach ($poll->user as $user) 
    {
        $user->poll()->dissociate();
        $user->save();
    }

    $poll->delete();
}

所有版本和版本都经过交叉检查,一切正确,一切都很好,但我仍然得到上述错误。我正在使用Spring Security。

0 个答案:

没有答案