青锋开源架构-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... 2、选择Spring Initializr 3、项目配置4、完成项目创建
项目整理1、删除掉mvn相关的maven控制 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
在浏览器中输入:
http://localhost:8090/common/hello/
至此我们的springboot项目搭建已经完成。