SpringBootショッピングモール開発環境の構築


Spring Bootプロジェクトの作成

  • Spring Boot Initializr
  • 2https://start.spring.io/のホームページにプロジェクトを作成します.
  • 構成
  • 、以下に示す
  • DB設定

  • MySQLの使用

  • MySQL Workbench 8.0 CE

  • 「作成モード」ボタンを使用してShopモードを作成する


  • Application.properties
  • ポート番号=8080指定
  • mariaDB
  • 適切なデータベースID、パスワードおよびパターン名
  • を入力する.
  • spring.jpa.hibernate.ddl-auto=create=>データベース初期化
  • spring.jpa.hibernate.ddl-auto=update=>データベース更新
  • server.port=8080
    
    spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
    spring.datasource.username=아이디
    spring.datasource.password=패스워드
    spring.datasource.url=jdbc:mysql://localhost:3306/스키마명
    
    # create, update, none, create-drop, validate,
    spring.jpa.hibernate.ddl-auto=update
    
    ## Jpa Properties
    spring.jpa.properties.hibernate.show_sql=true
    spring.jpa.properties.hibernate.format_sql=true
    
    ## Logging Level
    logging.level.org.hibernate.type.descriptor.sql=debug
    
    spring.security.user.name=root
    spring.security.user.password=root
    spring.security.user.roles=ADMIN