3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VSCodeでserialVersionUIDを自動生成したい!【2021/04~】

Last updated at Posted at 2021-06-21

こんな人のための記事

Language Support for Java(TM) by Red Hat では 0.77.0 (April 15th, 2021) 以降、
Serializableの実装クラスで serialVersionUIDが未定義のクラスに対して
Warningが出ないようになりました。

え!? Warningが出なかったら、Quick fix から
Add generated serial version ID できないじゃん!!

見つけるのはWarningを消す記事ばかり

大体の「Warningを消したい」サイトには、アノテーションを追加するか

..settings/org.eclipse.jdt.core.prefs
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=ignore

を追記しろという話でした。

逆手に取りましょう

デフォルトがignoreになったなら、出すためにobeyを追記しよう!

..settings/org.eclipse.jdt.core.prefs
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=obey

これで無事にWarningが出てAdd generated serial version ID ができるようになります。

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?