0
0

More than 1 year has passed since last update.

SpringBoot ✕ jQuery✕ DataTables・DataTables-pluginsの導入

Posted at

はじめに

SpringBootのRESTで検索機能を実装した際に、GradleプロジェクトでのDatTablesDataTables-pluginsの導入方法が見つからず、時間をロスしたので、同じように悩んでいる人などに向け備忘録として書いておきます。

build.gradle

結論、参考文献に書いてあるようにすればいいだけですので、非常に簡単です。

dependencies {
    implementation 'org.webjars:datatables:1.10.21'
    runtimeOnly 'org.webjars:datatables-plugins:1.10.21'
}

上記2行追加するだけでライブラリの導入は完了です。
お役経てば幸いです。

参考文献

MavenRepository

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