Hướng dẫn tạo, build, export file jar trong Intellij IDEA

Hướng dẫn tạo, build, export file jar trong Intellij IDEA

 

Build module java thành file .jar

Ví dụ mình có module Hello với class main là Hello.java với hàm main thực hiện in ra dòng chữ 'Hello World'

Bây giờ mình sẽ thực hiện build module Hello này thành file .jar để chạy bằng dòng lệnh.

Hướng dẫn tạo, build, export file jar trong Intellij IDEA

B1: File / Project Structure

Hướng dẫn tạo, build, export file jar trong Intellij IDEA

B2: Trong phần Project Setting, chọn Artifacts, click button ‘+‘ và chọn JAR/From modules with dependencies

tạo file .jar trong intellij idea

Chọn Moudule và Main Class mà bạn muốn tạo file .jar. (Phần Main Class sẽ chỉ định chạy method main của file nào đầu tiên khi thực thi file .jar)

build file jar trong intellij idea

Chọn tên của file jar và nơi chứa file jar (Ở đây mình export file jar ra folder D:\stackjava)

export file .jar trong intellij idea

B3: Thực hiện build ra file .jar

Trên menu bar, chọn Build/Build Artifacts, Chọn Hello:jar/Build

Hướng dẫn tạo, build, export file jar trong Intellij IDEA

Kiểm tra folder D:\stackjava ta sẽ thầy file Hello.jar được tạo ra.

Hướng dẫn tạo, build, export file jar trong Intellij IDEA

Chạy file Hello.jar vừa được tạo:

Hướng dẫn tạo, build, export file jar trong Intellij IDEA

 

Okay, Done!

References: https://blog.jetbrains.com/…/quickly-create-jar-artifact/

stackjava.com