LoginSignup
2
5

More than 5 years have passed since last update.

Spring ライブラリ、APIのインストール

Last updated at Posted at 2015-06-11

今回はSpringにlombockとApache Commonsを入れてみた。

lombock

pom.xmlに以下を記述

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

そしてmavenのプロジェクトの更新を行い、maven installを実行

Apache Commons

pom.xmlに以下を記述

<dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-lang3</artifactId>
   <version>3.4</version>
</dependency>

そしてmavenのプロジェクトの更新を行い、maven installを実行

ライブラリとAPIはとても便利なので、積極的に使っていきたいですね

2
5
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
2
5