guide
java-spring-on-lambda
sprig-boot 프로젝트 생성
1. 루트 디렉토리에서 gradle init
mkdir java-spring-on-lambda
cd java-spring-on-lambda
gradle initStarting a Gradle Daemon (subsequent builds will be faster)
Select type of project to generate:
1: basic
2: application
3: library
4: Gradle plugin
Enter selection (default: basic) [1..4] 2
Select implementation language:
1: C++
2: Groovy
3: Java
4: Kotlin
5: Scala
6: Swift
Enter selection (default: Java) [1..6] 3
Generate multiple subprojects for application? (default: no) [yes, no] no
Select build script DSL:
1: Kotlin
2: Groovy
Enter selection (default: Kotlin) [1..2] 2
Select test framework:
1: JUnit 4
2: TestNG
3: Spock
4: JUnit Jupiter
Enter selection (default: JUnit Jupiter) [1..4]
Project name (default: java-spring-on-lambda):
Source package (default: java.spring.on.lambda):
Enter target version of Java (min. 7) (default: 18): 21
Generate build using new APIs and behavior (some features may change in the next minor release)? (default: no)
> Task :init
To learn more about Gradle by exploring our Samples at https://docs.gradle.org/8.5/samples/sample_building_java_applications.html
BUILD SUCCESSFUL in 1m 15s
2 actionable tasks: 2 executed2. 프로젝트 설정 확인
Last updated