MD5 暗号化を利用するために、次のように構成を設定しています。
<authentication-manager >
<authentication-provider user-service-ref="userDetailsService" >
<password-encoder ref="passwordEncoder"/>
</authentication-provider>
</authentication-manager>
<beans:bean class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" id="passwordEncoder"/>
https://www.rfc-editor.org/rfc/rfc2617#section-3.2.1によると、私の理解では、MD5 がデフォルトの暗号化アルゴリズムである必要があります。ただし、クライアントのニーズにより、サーバーでこれを直接指定する必要があります。誰かがこれを達成するのを手伝ってくれませんか?