25 lines
270 B
Plaintext
25 lines
270 B
Plaintext
Maven:
|
|
|
|
1.Build the project
|
|
$>mvn validate
|
|
$>mvn package
|
|
|
|
2.run spring shell
|
|
$>java -jar target/helloworld-1.0.0-SNAPSHOT.jar
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Gradle:
|
|
|
|
1.Build the project
|
|
$>../../gradlew build
|
|
|
|
2.run spring shell
|
|
$>java -jar build/libs/helloworld.jar |