JWT 구현 후 token 발급을 위해 테스트 중 오류가 나왔다....
Unable to determine a suitable MAC or Signature algorithm for the specified key using available heuristics: either the key size is too weak be used with available algorithms, or the key size is unavailable (e.g. if using a PKCS11 or HSM (Hardware Security Module) key store). If you are using a PKCS11 or HSM keystore, consider using the JwtBuilder.signWith(Key, SecureDigestAlgorithm) method instead.
위의 내용을 만났는데, 가만히 읽어보니 키의 사이즈가 너무 부족하다는 말이였다.
application.properties 안에 있는 secret key 를 더 늘려줬더니!
해결되었다.
쨘!