[スプリング]スプリング&インテリジェント化プリファレンス
1479 ワード
スプリングを使用したプロジェクトプリファレンス
デフォルト設定インテル JAVA 11
https://start.spring.io
dependenciesで必要なものを選択します.
その後、プロジェクト(build.gradle)に次の必要な内容を直接追加することもできます.
最近のIntellijバージョンは基本的にGradleで運行されていますが、そうすると運行速度が遅くなります.
MacBook)preferences->Build、Execution、Deployment->Gradleに入り、下の赤いボックスの設定をIntelliJ IDEAに変更します.
デフォルト設定
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に変更します.
Reference
この問題について([スプリング]スプリング&インテリジェント化プリファレンス), 我々は、より多くの情報をここで見つけました https://velog.io/@code12/스프링-스프링인텔리제이-환경-설정テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol