spring boot 2.1.X 学习之路——项目构建
程序员文章站
2022-05-22 09:41:57
...
spring boot 2.1.X 学习之路——项目构建
项目结构
- 项目构建采用Maven方式;
- SystemApplication.java 是项目主入口,需放置在项目文件根目录下,方便项目启动时扫描文件
- spring boot 读取配置文件从resources/下读取,读取文件格式.properties和.yml两种,此处选择.yml方便阅读
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.dream</groupId>
<artifactId>dream-parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>dream-system-service</artifactId>
<version>1.0-SNAPSHOT</version>
<name>dream-system-service</name>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
</project>
当选择依赖自己的父级目录时,父级pom.xml文件配置:
<dependencyManagement>
<dependencies>
<!-- spring Boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.8.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
不需要引入父级工程时,pom.xml中<parent>
节点如下配置:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
</parent>
application.yml配置
server:
port: 8081
spring:
application:
name: system-service
SystemApplication.java
@SpringBootApplication
@RestController
public class SystemApplication {
@RequestMapping("/hello")
public String hello(){
return "恭喜你,项目搭建成功!";
}
public static void main(String[] args) {
SpringApplication.run(SystemApplication.class);
}
}
-
@SpringBootApplication
核心启动类注解
启动
当需要在访问的时候加上项目名称的时候,则在application.yml
中修改配置
server:
port: 8080
servlet:
context-path: /system
推荐阅读
-
构建多模块的Spring Boot项目步骤全纪录
-
15 个优秀开源的 Spring Boot 学习项目
-
Spring框架学习笔记(6)——阿里云服务器部署Spring Boot项目(jar包)
-
一起学习Spring boot 2.1.X | 第五篇:Mybatis Druid 数据库(注解版)
-
如何快速构建Spring-Boot项目
-
如何快速构建Spring Boot基础项目?
-
Spring Boot的学习之路(03):基础环境搭建,做好学习前的准备工作
-
Spring Boot介绍,构建项目及启动器使用
-
spring boot 学习笔记(二):项目属性配置
-
构建微服务:快速搭建Spring Boot项目