快捷搜索:  汽车  科技

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)至此我们的springboot项目搭建已经完成。

开源项目下载地址:

https://gitee.com/msxy/qingfeng-springboot-vue3-antdesign-vite

创建springboot项目1、点击新建选择project...

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(1)

2、选择Spring Initializr

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(2)

3、项目配置

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(3)

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(4)

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(5)

4、完成项目创建

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(6)

项目整理1、删除掉mvn相关的maven控制

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(7)

2、新增web和lombok的依赖

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--简化javabean相关操作--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency>3、删除application.property 新建application.yml

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(8)

项目运行1、启动项目

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(9)

2、访问hello

在浏览器中输入:

http://localhost:8090/common/hello/

青锋开源架构-springboot2.6.x(青锋开源架构-springboot2.6.x)(10)

至此我们的springboot项目搭建已经完成。

猜您喜欢: