关于springboot想必很多人都在使用,由于公司项目一直使用的是SpringMVC,所以自己抽空体验了一下springboot的简单使用. 环境搭建 springbooot的环境搭建可以说很灵活,可以新建maven普通项目来手动搭建,当然也可以使用Spring的STS来搭建,由于IDE使用eclipse,所以就直接使用STS插件. 1. 在eclipse的Marketplace中搜索STS,后直接下载安装即可. 2.  安装好后,在新建项目中就可以看到springboot的相关内容,选择第二…
前言 本文中提到的解决方案,源码地址在:springboot-thymeleaf,希望可以帮你解决问题. 至于为什么已经写了一篇文章thymeleaf模板引擎调用java类中的方法,又多此一举的单独整理了这篇文章,是因为在解决此问题时首先搜索了一下关于此问题的文章,但是网上并没有搜到关于此问题的答案,因此自己做了整理. 问题描述 在springboot与thymeleaf整合过程中,出现了如下报错: org.thymeleaf.exceptions.TemplateProcessingExcep…
Java结合SpringBoot拦截器实现简单的登录认证模块 之前在做项目时需要实现一个简单的登录认证的功能,就寻思着使用Spring Boot的拦截器来实现,在此记录一下我的整个实现过程,源码见文章底部. 1. 环境搭建 IntelliJ IDEA + Java8 + Spring Boot + Tomcat 我将之前项目中的登录模块抽离出来,单独放在了一个新建的Spring Boot项目中: 整个项目的主要结构如下: 参考资料:使用IDEA创建Spring Boot项目 2. 代码详解 2.…
SpringBoot 国际化配置,SpringBoot Locale 国际化 ================================ ©Copyright 蕃薯耀 2018年3月27日 http://www.cnblogs.com/fanshuyao/ 附件下载(源码下载)见:http://fanshuyao.iteye.com/blog/2414640 一.效果所下: 二.SpringBoot 国际化配置 1.创建国际化配置文件(3个): mess.properties mess.u…
SpringBoot访问NoSQL SpringBoot访问Redis 在pom.xml添加boot-data-redis定义 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> </parent…
SpringBoot默认国际化文件为:classpath:message.properties,如果放在其它文件夹中,则需要在application.properties配置属性spring.messages.basename: 在srpingboot自定义一个国家化文件: 1.在resources目录下创建myconfig.properties2.修改application.properties或者application.yml文件:        spring:          messa…
html层 <div> <a class="num"><b th:text="'共 '+ ${result.resultMap['pages']}+ ' 页'"></b></a> <a class="num" th:if="${result.resultMap['hasPreviousPage']} == true" th:href="@{'/repo…
SpringBoot thymeleaf使用方法,thymeleaf模板迭代 SpringBoot thymeleaf 循环List.Map ================================ ©Copyright 蕃薯耀 2018年3月27日 http://www.cnblogs.com/fanshuyao/ 附件下载见:http://fanshuyao.iteye.com/blog/2414521 一.thymeleaf模板基本显示: <div th>thymeleaf模板语…
SpringBoot thymeleaf模板插件安装 SpringBoot thymeleaf模板Html页面没提示 SpringBoot  thymeleaf模板页面没提示 SpringBoot thymeleaf插件下载 ================================ ©Copyright 蕃薯耀 2018年3月27日 http://www.cnblogs.com/fanshuyao/ 附件下载地址见:http://fanshuyao.iteye.com/blog/2414…
SpringBoot thymeleaf模板版本 thymeleaf模板更换版本 修改thymeleaf模板版本 ================================ ©Copyright 蕃薯耀 2018年3月27日 http://www.cnblogs.com/fanshuyao/ 一.SpringBoot 使用thymeleaf模板需要引用依赖的Jar包: <dependency> <groupId>org.springframework.boot</gro…