Spring Boot热部署的几种方式
goomoon 2年前 (2020-02-18) 2492浏览 0评论
1、模板热部署 在 Spring Boot 中,添加了对各种模板框架的支持,当然也就有对模板的配置,模板引擎的页面默认是开启缓存的,如果修改了页面的内容,则刷新页面是得不到修改后的页面的,因此我们可以在application.properties中关...
goomoon 2年前 (2020-02-18) 2492浏览 0评论
1、模板热部署 在 Spring Boot 中,添加了对各种模板框架的支持,当然也就有对模板的配置,模板引擎的页面默认是开启缓存的,如果修改了页面的内容,则刷新页面是得不到修改后的页面的,因此我们可以在application.properties中关...
goomoon 2年前 (2020-01-13) 1339浏览 0评论
什么是 Spring Boot? Spring Boot 是由 Pivotal 团队提供的全新框架。Spring Boot 是所有基于 Spring Framework 5.0 开发的项目的起点。Spring Boot 的设计是为了让你尽可能快的跑起...
goomoon 2年前 (2020-01-13) 1605浏览 2评论
multipart multipart.enabled 开启上传支持(默认:true) multipart.file-size-threshold: 大于该值的文件会被写到磁盘上 multipart.location 上传文件存放位置 multipa...