Spring boot2.0学习笔记(一)
学习环境:
jdk1.8 (Spring Boot 推荐jdk1.8及以上): java version "1.8.0_241"
Maven 3.x (maven 3.2 以上版本):Apache Maven 3.6.2
IntelliJ IDEA :IntelliJ IDEA 2019.3
maven的settings.xml修改配置,也可以不修改(该步骤用于修改仓库的位置和云端源、版本等信息)
在idea中设置maven的相关配置
创建Spring Boot项目
项目结构如下
其中application.properties可以更改为application.yml,名字的不同知识内部的语法有区别
配置文件的存放位置也是有级别的
启动样式的修改,在根目录添加,banner.txt,启动样式为文件内容
文字转换样式:http://www.network-science.de/ascii/
pom.xml 加入 Thymeleaf 启动器
<!-- thymeleaf 模板启动器 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
<html xmlns:th="http://www.thymeleaf.org">
thymeleaf中实现遍历
效果为:
热部署
注意需要编译,IDEA执行ctrl + F9 。至此,热部署就可以了
让我们更快、更好的成长