0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JavaでAPI叩いた時のserialVersionUIDについてと警告の消し方

Last updated at Posted at 2024-12-15

serialVersionUIDって必要なの?

今回調べた中で、一番分かりやすい言葉をお借りすると

インターフェースjava.io.Serializableを実装した場合に必要。
親クラスが実装していた場合にも必要になる。
シリアライズなクラスのバージョンを管理するためにある。

とのことでした。

また、設定したserialVersionUIDを変更すると例外が発生するみたいです。

警告を消す方法1

@SuppressWarnings("serial")

このアノテーションをSerializableをインターフェースとして実装したクラスの上に追記する

警告を消す方法2

@Serial

このアノテーションをserialVersionUIDを変数として定義した際に追記する

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?