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

More than 1 year has passed since last update.

EclipseでJARファイルを配置

Posted at

はじめに

JARファイルをlibフォルダ配下にコピペする以外のJARファイルの配置方法です。

Eclipce上で、JARファイルを、java build pathに追加し、Deployment Assemblyに登録します。

WebContent以下のディレクトリ構造

├─ WebContent
│ └─META-INF
│ └─WEB-INF
│        └─ lib ★
│        └─ web.xml

JARファイルをlibフォルダへ配置する手順

1. 左クリックで表示される項目の中から、proertyを選択
2. Java build pathを選択し、「Libraries」の「Add External JARs」から、jarファイルを追加
3. Deployment Assembly を選択して、「Add」をクリックすると、Select Ditective Type が用事されるので、「Java Build Path Entries」を選択して、「Next」
4. 2でJava build pathに登録したJARファイルの一覧が表示されるので、それらを選択して「Finish」

補足

jarファイルは、アプリケーションが実行(デプロイ)された時にlibフォルダに行くため、libフォルダ内を直接参照してJARファイルを確認することはできません。JARファイルを確認したい場合は、プロジェクトフォルダ内に作成される、Referenced Librariesから参照することができます。

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