码迷,mamicode.com
首页 >  
搜索关键字:thymeleaf    ( 794个结果
Spring Boot 学习(一) 异常处理机制
自定义404 5xx 页面,在文件夹下添加一个error的文件夹,里面添加对应的html 根据报错显示对应的html 自定义显示,在返回的信息中,浏览器返回的是json,此时包含了5个消息,时间、错误信息、堆栈、路径、状态码,只要是json信息都可以取到,通过thymeleaf里的th:text=" ...
分类:编程语言   时间:2021-06-30 18:28:26    阅读次数:0
org.thymeleaf.exceptions.TemplateInputException: Error resolving template
直接导包 <dependency> <groupId>net.sourceforge.nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>1.9.22</version> </dependency> ...
分类:其他好文   时间:2021-06-18 19:55:12    阅读次数:0
SpringBoot项目取消静态文件访问限制
spring: #thymeleaf thymeleaf: cache: false prefix: classpath:/templates/ check-template-location: true suffix: .html encoding: utf-8 mode: HTML #这个是关键 ...
分类:编程语言   时间:2021-06-02 19:47:35    阅读次数:0
Thymeleaf的使用
Thymeleaf官网: https://www.thymeleaf.org/ 一 、Thymeleaf是什么? Thymeleaf是一个流行的模板引擎,该模板引擎采用Java语言开发,模板引擎是一个技术名词,是跨领域跨平台的概念,在Java语言体系下有模板引擎,在C#、PHP语言体系下也有模板引擎 ...
分类:其他好文   时间:2021-05-24 05:36:05    阅读次数:0
jQuery结合Thymeleaf模板中的fragment标签实现Ajax异步加载数据
前端页面 一、首先、在需要异步刷新的div上面定义fragment片段 1 <div th:fragment="fragmentSegment"> 2 需要异步刷新的div 3 </div> 二、主动加载数据 1 <script type="text/javascript" th:inline="j ...
分类:Web程序   时间:2021-05-24 04:40:48    阅读次数:0
Spring boot Mybatis 整合(完整版)
个人开源项目springboot+mybatis+thymeleaf+docker构建的个人站点开源项目(集成了个人主页、个人作品、个人博客)企业级延迟任务方案之RabbitMQ死信队列更多干货SpringBoot系列目录 正题本项目使用的环境: 开发工具:Intellij IDEA 2017.1. ...
分类:编程语言   时间:2021-05-24 00:07:57    阅读次数:0
thymeleaf
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency></dependencies> ...
分类:其他好文   时间:2021-04-24 13:41:04    阅读次数:0
服务器渲染和用户端渲染
1、什么是服务端渲染 服务端渲染又称SSR (Server Side Render)是在服务端完成页面的内容渲染,而不是在客户端完成页面内容的渲染。 SSR并不是前端特有的技术,我们学习过的JSP技术和Thymeleaf技术就是典型的SSR 服务端渲染的特点: 在服务端生成html网页的dom元素 ...
分类:其他好文   时间:2021-04-20 14:05:55    阅读次数:0
spring security环境框架搭建
1,pom依赖导入 注:spring boot版本须使用2。1.0以下版本,此次使用2.0.9版本 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</a ...
分类:编程语言   时间:2021-04-15 12:03:14    阅读次数:0
springmvc 整合 thymeleaf
添加依赖 <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.5</version> </dependency> <dependency> <g ...
分类:编程语言   时间:2021-04-07 11:07:19    阅读次数:0
794条   1 2 3 4 ... 80 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!