第一个springBoot程序
使用IDEA创建第一个springBoot项目
新建一个project。然后如下图所示:
选择依赖的时候,就选择springweb就可以了。
然后,一路next或者finish就可以了。
工程结构
下图是在已有的工程中,创建的一个springboot的module。其中Application.java是main函数所在的类,即主类。application.properties配置文件是springboot的主配置文件。
所有的bean需要在主类所在包下,或者主类所在包的子包下面。
写好控制器后,我们就可以直接点主类的main函数运行了。
当然,还可以现在application.properties主配置文件中,配置一下端口号和上下文路径。如果不配置的话,就默认是tomcat的8080端口,上下文路径为空。
主配置文件如下:
server.port=8081
server.servlet.context-path=/myapp
控制器如下:
package com.czy.primary.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("demo")
public class DemoController {
@GetMapping
public String demo() {
return "hello spring boot!";
}
}
依赖的pom文件
<?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.czy</groupId>
<artifactId>01_primary</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>01_primary</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<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>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
访问结果如图: