Docsify/springboot/chapter1.md
2023-06-13 16:37:18 +08:00

39 lines
1.2 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 目录说明
```- src
-main
-java
-package
#主函数,启动类,运行它如果运行了 Tomcat、Jetty、Undertow 等容器
-SpringbootApplication
-resouces
#存放静态资源 js/css/images 等
- statics
#存放 html 模板文件
- templates
#主要的配置文件SpringBoot启动时候会自动加载application.yml/application.properties
- application.yml
#测试文件存放目录
-test
# pom.xml 文件是Maven构建的基础里面包含了我们所依赖JAR和Plugin的信息
- pom
```
##注意
- pom.xml中配置文件和程序的编码格式为utf-8
在<properties>标签中添加
```
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
```
- 设置默认端口号和默认访问路径在application.properties中配置
```
// 设置默认端口号
server.port=8090
// 设置根路径
server.servlet.context-path=/xiao
```
- 修改默认banner
- 在resource目录下添加banner.txt、banner.jpg、banner.gif、banner.jpeg等文件即可