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?

More than 1 year has passed since last update.

SpringBoot Gradleでの静的jarファイルの読み込み

Posted at

はじめに

SpringBoot+Gradle環境で開発を行っていたが、個別の特定jarファイル環境に組み込む必要があり実装した結果のメモ

環境

Java  Openjdk 11
Spring Boot 2.5.0
Gradle 3.x

手順

以下のように記載

build.gradle

dependencies {
implementation(fileTree(dir: 'libs', include: ['wsc-enterprise.jar']))
}

jarファイルの格納場所は以下の場合
 project - lib - wsc-enterprise.jar

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?