
Spring boot
opii926
这个作者很懒,什么都没留下…
展开
-
Spring Boot整合Mybatis
1. 项目所需的依赖<dependencies> <!--thyemfeaf--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-...原创 2019-11-03 16:07:19 · 194 阅读 · 0 评论 -
Spring Boot整合Thymeleaf
第一个Thymeleaf模板页1. 添加依赖spring-boot-starter-thymeleaf:Thymeleaf 自动配置nekohtml:允许使用非严格的 HTML 语法2. 在 application.yml 中配置 Thymeleafspring: thymeleaf: cache: false # 开发时关闭缓存,不然没法看到实时页面 mode:...原创 2019-11-02 15:15:52 · 306 阅读 · 0 评论 -
Spring boot 简介
1. Spring boot 简介spring boot框架抛弃了繁琐的xml配置过程,它使用“习惯优于配置”(项目中存在大量的配置,此外还内置了一个习惯性的配置,让你无需手动进行配置)的理念让你的项目快速的运行起来。使用 Spring Boot 很容易创建一个独立运行(运行 Jar,内嵌 Servlet 容器)准生产级别的基于 Spring 框架的项目,使用 Spring Boot 你可以...原创 2019-10-19 23:06:07 · 243 阅读 · 0 评论