上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 77 下一页
摘要: 1. pom.xml 加入 Thymeleaf 启动器 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependen 阅读全文
posted @ 2020-03-01 19:18 1点 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 欢迎 页面映射 会从 4个静态资源目录 + 根路径 / 中 查找 index.html 页面 会在 静态资源目录下 与 根路径查找 (按该顺序) index.html页面; 收到 "/**" 请求映射 访问 localhost:8080/ 会在上面5个目录中查找 index.html 页面(因为/也 阅读全文
posted @ 2020-03-01 12:04 1点 阅读(243) 评论(0) 推荐(0) 编辑
摘要: 1.如果不是 /webjars/** 资源 if (!registry.hasMappingForPattern("/webjars/**")) { this.customizeResourceHandlerRegistration(registry.addResourceHandler(new S 阅读全文
posted @ 2020-03-01 11:48 1点 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 我们可以在 WebMvcAutoConfiguration 这个类下查找一个方法 addResourceHandlers public void addResourceHandlers(ResourceHandlerRegistry registry) { if (!this.resourcePro 阅读全文
posted @ 2020-03-01 11:32 1点 阅读(257) 评论(0) 推荐(0) 编辑
摘要: pringBoot默认配置好了日志, 只要启动 Spring Boot 项目就会在控制台输出日志信息。 实际开发中我们不需要直接添加该依赖,你会发现spring-boot-starter其中包含了 spring-boot-starter-logging, 该依赖内容就是 Spring Boot 默认 阅读全文
posted @ 2020-02-29 22:32 1点 阅读(1143) 评论(0) 推荐(0) 编辑
摘要: Profifile 多环境支持 用于针对不同的环境进行不同的配置 比如线下环境 和 生产环境 现在我们有个小案例进行演示 1.在 resource文件夹下 创建 application-prod.properties server.port=8081 application-dev.properti 阅读全文
posted @ 2020-02-29 18:05 1点 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 1.添加Bean package com.example.boot2.demo.bean; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.s 阅读全文
posted @ 2020-02-29 13:20 1点 阅读(282) 评论(0) 推荐(0) 编辑
摘要: YAML语法格式 key: value 表示一对键值对(冒号后面必须要有空格) 使用空格缩进表示层级关系 左侧缩进的空格数目不重要,只要同一层级的元素左侧对齐即可 key 与 value 大小写敏感 YMAL常用写法 字面量: 数值,字符串,布尔,日期 字符串 默认不用加上引号; “” 使用 双引号 阅读全文
posted @ 2020-02-29 10:45 1点 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1.nginx 启动出现: 2.打开nginx.conf配置文件,把下面红色部分打开,重启服务器或者重新加载配置文件,这样nginx.pid路径就更改成功! 3. 在sbin/ 路径下执行 ./nginx -c /usr/local/nginx/conf/nginx.conf 出现问题 这个问题是端 阅读全文
posted @ 2020-02-25 22:27 1点 阅读(2047) 评论(0) 推荐(0) 编辑
摘要: 使用定时任务 1.安装定时任务: yum install crontabs 2.crontab -e 编辑并且添加一行新的任务: */1 * * * * /usr/1ocal/nginx/sbin/cut_my_log.sh 3.重启定时任务: service crond restart 常用定时任 阅读全文
posted @ 2020-02-25 20:50 1点 阅读(174) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 77 下一页