0
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.

Lombokの設定方法

Posted at

Springのアノテーションは使えるのに@Dataが使えない理由について調べたところ、Lombokをインストールする必要があると知りました。今回はpom.xmlに追加することで使えるように設定しました。

#前提#
・Spring starterプロジェクトで新規作成する
・ビルドツールにMavenを使用する

#設定手順#
1pom.xmlのdependencies内に下記を追加する。

	<dependency>
		<groupId>org.projectlombok</groupId>
		<artifactId>lombok</artifactId>
		<version>1.18.8</version>
		<scope>provided</scope>
	</dependency>

もし追加したのに動作しない!追加したのに認識してくれない!等があればMavenプロジェクトの更新を行ってみてください。
(プロジェクトを右クリック>Mavan>プロジェクトの更新)

あと、バージョンが古い!って怒られますが気になる方は最新のバージョンに書き換えてみてください。
1.18.8でも問題なく動作します。
(2月8日時点では1.18.16が最新)

以上!

0
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
0
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?