LoginSignup
0
2

More than 5 years have passed since last update.

SpringBoot構築メモ(Java版)

Posted at

開発環境

  • STS(SpringToolSuite)
  • IntelliJ

パッケージ管理

  • Maven
  • Gradle

依存ライブラリ

  • Lombok
  • Web
  • Thymeleaf: テンプレートエンジン
    • Webjar(Bootstrap): CSS
  • JPA(Java PersistanceAPI): O/Rマッパー
    • JPQL: SQLをベンダー依存しないようにラップ
  • H2(オンメモリDB): 開発時のDB,実際はMySQL
  • Flyway: DBマイグレーション
    • /src/main/resources/db/migrationsに置いとくと実行される
  • JUnit: ユニットテスト
  • Spring Security: 認証系

実行環境

  • 開発

    • 組み込みTomcat
    • PCF Dev
  • 運用

    • Cloud Foundry

CloudFoundryは、パブリッククラウド(AWS/Azure/GCP)や、プライベート仮想環境(OpenStack/VMWare vSphere)上で利用できる
また、PaaSでも提供されている

PaaS

  • Pivotal Web Service(PWS)
    • PCF Dev: ローカル開発用仮想環境
    • cleardb: MySQLマネージドサービス
    • rediescloud: Redisマネージドサービス
  • IBM Bluemix
  • Swisscom Application

参照

0
2
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
2