0
とSpringBootに失敗:は、HttpSessionのにオブジェクトを追加すると、Redisの
HttpSession session = ....
MyObject object = ....
session.setAttribute("my_object", object);
はその後、私は例外を取得:
org.springframework.data.redis.serializer.SerializationException:
Cannot serialize; nested exception is
org.springframework.core.serializer.support.SerializationFailedException:
Failed to serialize object using DefaultSerializer; nested exception is
java.lang.IllegalArgumentException: DefaultSerializer requires a
Serializable payload but received an object of type [MyObject]
私はに何をすべきオブジェクトをシリアル化する際にREDISに指示してくださいMyObject
?
ありがとう、それは動作します –