2024-02-01|使用 Spring Initializr 创建项目
今天做了什么:
- 重构 foodie-cloud 项目,部署到 docker 容器
- 使用 Spring Initializr 创建项目
使用 Spring Initializr 创建项目
安装 spring cli
使用 brew 安装的 spring cli 版本是 3.x 版本
brew tap pivotal/tap brew install springboot
使用 sdkman 安装:
sdk install springboot 3.2.2
查看版本:
$ spring version Spring CLI v3.2.2
查看 spring cli 支持的命令
spring help
查看 init 命令说明:
spring help init
参考 spring init 命令:
spring init --list
可以看到支持的依赖
activemq
actuator
amqp
artemis
azure-active-directory
azure-cosmos-db
azure-keyvault
azure-storage
azure-support
batch
cache
camel
cloud-bus
cloud-config-client
cloud-config-server
cloud-contract-stub-runner
cloud-contract-verifier
cloud-eureka
cloud-eureka-server
cloud-feign
cloud-function
cloud-gateway
cloud-gateway-reactive
cloud-gcp
cloud-gcp-pubsub
cloud-gcp-storage
cloud-loadbalancer
cloud-resilience4j
cloud-starter
cloud-starter-consul-config
cloud-starter-consul-discovery
cloud-starter-vault-config
cloud-starter-zookeeper-config
cloud-starter-zookeeper-discovery
cloud-stream
cloud-task
codecentric-spring-boot-admin-client
codecentric-spring-boot-admin-server
configuration-processor
data-cassandra
data-cassandra-reactive
data-couchbase
data-couchbase-reactive
data-elasticsearch
data-jdbc
data-jpa
data-ldap
data-mongodb
data-mongodb-reactive
data-neo4j
data-r2dbc
data-redis
data-redis-reactive
data-rest
data-rest-explorer
datadog
db2
derby
devtools
dgs-codegen
distributed-tracing
docker-compose
dynatrace
flyway
freemarker
graphite
graphql
groovy-templates
h2
hateoas
hilla
hsql
influx
integration
jdbc
jersey
jooq
kafka
kafka-streams
liquibase
lombok
mail
mariadb
modulith
mustache
mybatis
mysql
native
new-relic
oauth2-authorization-server
oauth2-client
oauth2-resource-server
okta
oracle
picocli
postgresql
prometheus
pulsar
pulsar-reactive
quartz
restdocs
rsocket
scs-config-client
scs-service-registry
security
sentry
session
solace
spring-shell
sqlserver
testcontainers
thymeleaf
timefold-solver
unboundid-ldap
vaadin
validation
wavefront
web
web-services
webflux
websocket
zipkin
支持的构建系统有:
gradle-build
gradle-project
gradle-project-kotlin
maven-build
maven-project
支持的参数有:
- artifactId
- bootVersion
- description
- groupId
- javaVersion
- language
- name
- packageName
- packaging
- type
- version
- 创建项目
spring init 使用的是 start.spring.io 创建项目,而目前 start.spring.io 支持的 spring boot 版本最低为 3.1.0。如果想创建 spring boot2 的项目,需要创建项目之后手动修改版本号。
spring init \
--boot-version=3.2.2 \
--type=maven-project \
--java-version=8 \
--name=config-file \
--package-name=com.chensoul.springcloud \
--groupId=com.chensoul.springcloud \
--dependencies=cloud-config-server \
config-file
Related content
- 2024-11-13|今天我做了什么
- 2024-11-07|今天我做了什么
- 2024-11-06|今天我做了什么
- 2024-11-05|今天我做了什么
- 2024-11-04|SivaLabs博客文章
- 2024-02-20|RateLimitAspect请求限流、调整spring-cloud-examples项目结构
- 2024-02-19|foodie-cloud集成Sharding Sphere实现读写分离
- 2024-02-18|NewRelice应用性能监控、6个Diagrams工具、foodie-food测试
- 2024-02-05|Spring Cloud Config快速入门
- 2024-02-04|foodie-cloud集成Resilience4j