if (bCryptPasswordEncoder.matches(dbPassWord,dbPassWord))为什么两个完全一样的值,最后的结果会是false
matches是判断正则是否能够匹配。如果你想判断是否相等使用equal方法,是否包含使用contains。