[スプリング]スプリング&インテリジェント化プリファレンス


スプリングを使用したプロジェクトプリファレンス
デフォルト設定
  • インテル
  • JAVA 11
  • 1.スプリングイニシエータサイトに移動してスプリングアイテムを作成する


    https://start.spring.io

    dependenciesで必要なものを選択します.

    その後、プロジェクト(build.gradle)に次の必要な内容を直接追加することもできます.
    
    dependencies {
    	implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
    	implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
    	implementation 'org.springframework.boot:spring-boot-starter-web'
        implementation 'junit:junit:4.13.1'
    	implementation 'junit:junit:4.13.1'
    	compileOnly 'org.projectlombok:lombok'
    	annotationProcessor 'org.projectlombok:lombok'
    	testImplementation 'org.springframework.boot:spring-boot-starter-test'
    	implementation 'org.springframework.boot:spring-boot-starter-jdbc'
    	runtimeOnly 'com.h2database:h2'
    	implementation 'com.google.firebase:firebase-admin:7.1.1'
    }
    

    2.プリファレンスの変更


    最近のIntellijバージョンは基本的にGradleで運行されていますが、そうすると運行速度が遅くなります.
    MacBook)preferences->Build、Execution、Deployment->Gradleに入り、下の赤いボックスの設定をIntelliJ IDEAに変更します.