搭建SpringBoot项目 快速搭建一个SpringBoot项目(纯小白搭建教程)
我真的不菜 人气:0零、环境介绍
环境:jdk1.8及以上,maven,Win10,IDEA,网络
一、手把手创建
请求创建在启动类所在的包里面,才能顺利启动
1.创建步骤
看图,有手就行
之后得到的就是一个maven项目,目录结构如下:
之后添加依赖,springboot的核心依赖。SpringBoot提供了一个名为spring-boot-starter-parent的构件,里面已经对各种常用依赖(并非全部)的版本进 行了管理,我们的项目需要以这个项目为父工程,这样我们就不用操心依赖的版本问题了,需要什么依赖,直接引 入坐标即可!
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <groupId>com.example</groupId> <artifactId>demo</artifactId> <version>0.0.1-SNAPSHOT</version> <modelVersion>4.0.0</modelVersion> <!--本机JDK版本--> <properties> <java.version>11</java.version> </properties> <!--父类依赖--> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.5.4</version> <relativePath/> <!-- lookup parent from repository --> </parent> <!--web启动器依赖--> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies> </project>
需要注意的是,我们并没有在这里指定版本信息。因为SpringBoot的父工程已经对版本进行了管理了。 这个时候,我们会发现项目中多出了大量的依赖:
些都是SpringBoot根据spring-boot-starter-web这个依赖自动引入的,而且所有的版本都已经管理好,不会出 现冲突。
2.启动类和测试编写
2.1 项目结构
启动类,会读取后续需要使用到的配置信息。比如当我们一个应用启动了,后续访问应用,数据已经连接好了,路径信息也有,只等请求来了。同理,当启动类启动时,需要它子目录中的配置信息,比如数据库连接,比如@RequestMapping(value=“queryList”)应该在启动的时候,把信息读取到。
2.2 创建启动类DemoApplication
package com.pdh; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class,args); } }
之后就是创建controller进行测试即可:
package com.pdh.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController public class TestController { @GetMapping("/hello") public String hello(){ return "hello"; } }
2.3 测试
启动DemoApplication后,浏览器访问localhost:8080/hello
,返回数据成功即可。
二、依赖工具创建
选择Spring Initializr,它默认使用https://starts.spring.io
来快速构建spring boot项目,但是在没有网络的时候,不能依赖此构建。没有网络构建springboot项目也不现实,因为需要用到maven等访问其远程仓库的项目。下面就是搭建的详细步骤
File -> New -> Project,与上面搭建一致,之后就看图即可:
这里我们默认选择https://start.spring.io
作为默认的构建路径,当然也可以选择自己想要风格的网站。下面就是一些详细信息、配置等
点击next之后
因为我只是演示,就只勾选web中的spring web依赖。
现在,项目就是搭建完成,下面说一下springboot项目结构:
之后,得到可运行的springboot项目。并编写TestController,一定要编写在main方法所在包及其子包下
之后点击运行main方法,打开浏览器,访问localhost:8080
,回车即可访问成功
下面简单说一下springboot项目的一些特殊点:
springboot采用全注解配置,优雅~
- pom.xml文件:maven依赖关系文件。
- DemoAppication.java:该文件内含main函数,用于启动应用程序。
- main方法:它相当于程序的一个入口。通过调用run方法,将业务委托给springboot的SpringApplication类,SpringApplication将引导我们的应用,启动spring,继而启动被我们配置好的tomcat web服务器。DemoApplication.class被作为一个参数传递给run方法来告诉SpringApplication谁是主要的spring组件。
- application.properties:一个空的properties文件,可根据需要配置属性。
- 启动spring,继而启动被我们配置好的tomcat web服务器。DemoApplication.class被作为一个参数传递给run方法来告诉SpringApplication谁是主要的spring组件。
- application.properties:一个空的properties文件,可根据需要配置属性。
加载全部内容