• Stars
    star
    110
  • Rank 316,770 (Top 7 %)
  • Language
    Java
  • License
    Apache License 2.0
  • Created over 7 years ago
  • Updated 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Spring Boot Sample Application

Java CI with Gradle Documentation Status

ローカル環境

アプリケーションの起動

管理側

$ ./gradlew :sample-web-admin:bootRun

フロント側

$ ./gradlew :sample-web-front:bootRun

API

$ ./gradlew :sample-web-api:bootRun

バッチ

$ # 担当者マスタ取込バッチを起動する
$ ./gradlew :sample-batch:bootRun --args="--spring.batch.job.name=importStaffJob"

$ # 顧客マスタ取込バッチを起動する
$ ./gradlew :sample-batch:bootRun --args="--spring.batch.job.name=importUserJob"

$ # バースデーメール送信キュー登録バッチを起動する
$ ./gradlew :sample-batch:bootRun --args="--spring.batch.job.name=birthdayMailJob"

$ # メール送信バッチを起動する
$ ./gradlew :sample-batch:bootRun --args="--spring.batch.job.name=sendMailJob"

接続先情報

テストユーザー [email protected] / passw0rd

接続先 URL
管理側画面 http://localhost:18081/admin
API http://localhost:18082/api/v1/users
フロント側 http://localhost:18080/

データベース接続先

mysql -h 127.0.0.1 -P 3306 -uroot -ppassw0rd spring-boot-doma2-sample

ブラウザを用いた自動テスト(結合テスト)

実行方法

テスト対象 実行方法
管理側画面 gradlew :it/sample-web-admin:test
フロント側 gradlew :it/sample-web-front:test

※ IntelliJから起動する場合は他のテストと同様にテストクラスを選択して実行してください

CIなどで結合テストを行わない場合は以下のようにして対象から外します

$ ./gradlew clean test --info -x :it/sample-web-admin:test -x :it/sample-web-front:test

コード自動生成(おまけ)

$ cd /path/to/spring-boot-doma2-sample
$ ./gradlew codegen -PphysicalFunctionName=client -PphysicalMultiFunctionName=clients -PlogicalFunctionName=取引先 [-Ptarget=dao|entity|repository|service|controller|html]

参考

プロジェクト 概要
Lombok Project 定型的なコードを書かなくてもよくする
Springframework Spring Framework
Spring Security セキュリティ対策、認証・認可のフレームワーク
Doma2 O/Rマッパー
spring-boot-doma2 Doma2とSpring Bootを連携する
Flyway DBマイグレーションツール
Thymeleaf テンプレートエンジン
Thymeleaf Layout Dialect テンプレートをレイアウト化する
WebJars jQueryなどのクライアント側ライブラリをJARとして組み込む
ModelMapper Beanマッピングライブラリ
Ehcache キャッシュライブラリ
Spock テストフレームワーク
Mockito モッキングフレームワーク