在上一篇博客https://blog.csdn.net/qq_44628230/article/details/112620034的基础上,我们使用idea的spring initializr快速建立了项目,在左侧我们可以看到自动生成了以下文件,那么这些文件都有什么用呢?下面我们依次来分析。
生成的文件的主要部分在于以下四个方面
1、程序的主启动类Springboot01helloworldApplication
2、一个application.properties配置文件
3、一个测试类Springboot01helloworldApplicationTests
4、一个pom.xml
下面依次分析每一个文件的内容
Springboot01helloworldApplication.java是一个通过spring来应用的程序主入口,不能删改
注意:要在该文件的同级目录下来建立我们的项目(与主入口同级扫描包)
package com.test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
//本身就是Spring的一个组件
//程序的主入口,不能删也不能改
@SpringBootApplication
public class Springboot01helloworldApplication {
//通过spring应用的主入口
public static void main(String[] args) {
SpringApplication.run(Springboot01helloworldApplication.class, args);
}
}
application.properties是springboot的核心配置文件(springboot推荐yml格式)
Springboot01helloworldApplicationTests.java是单元测试文件
package com.test;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
//单元测试
@SpringBootTest
class Springboot01helloworldApplicationTests {
@Test
void contextLoads() {
}
}
建立的工程中的hellocontroller.java:
package com.test.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
//@Controller 为了让它是一个返回字符串,使用RestController
//也可以使用@RequestMapping+@ResponseBody
public class hellocontroller {
//接口:http://localhost:8080/hello
//将接口简化到只需要写一个controller
@RequestMapping("/hello")
public String hello(){
//调用业务,接收前端参数
return "hello world";
}
}
或者
package com.test.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping("/hello")
public class hellocontroller {
@GetMapping("/hello")
@ResponseBody
public String Hello(){
return "hello world";
}
}
至此已完成接口的配置程序编写。
pom.xml文件
<?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">
<modelVersion>4.0.0</modelVersion>
<!--有一个父项目,父依赖-->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.1</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.test</groupId>
<artifactId>springboot01helloworld</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>springboot01helloworld</name>
<description>my first Spring Boot project</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!--web依赖,tomcat,dispatcherServlet,xml..web场景启动器.-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--单元测试-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<!-- 剔除依赖 -->
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<!--所有的依赖都是以spring-boot-starter开头,springboot将所有的功能场景都变成一个个启动器-->
<!--我们需要启动什么功能,只需要找到相应的启动器引入依赖就行-->
<build>
<!--打jar包插件-->
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
点击运行启动项目,控制台将显示以下内容并且项目不会停止(类似于Tomcat)
可在上图中看到springboot版本信息,默认标识,以及项目启动信息。倒数第二行Tomcat started on port(s): 8080 (http) with context path ''可见Tomcat在8080端口启动,此时可访问localhost的8080端口查看到helloworld内容。