会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
小虎Tiger
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
···
9
下一页
2018年9月17日
Ajax学习
摘要: XMLHttpRequest对象 1 2 3 4 5 6 7 8 9 10 11 function getXHR() { //根据对象判断浏览器 if(window.XMLHttpRequest) { //不是IE return new XMLHttpRequest(); }else{ //IE r
阅读全文
posted @ 2018-09-17 20:52 小虎Tiger
阅读(73)
评论(0)
推荐(0)
2018年9月12日
自定义annotation-----转载
摘要: Java从JDK5.0开始便提供了四个meta-annotation用于自定义注解的时候使用,这四个注解为:@Target,@Retention,@Documented 和@Inherited。 @Target:用于描述注解的使用范围(即:被描述的注解可以用在什么地方),其源码如下: 1 2 3 4
阅读全文
posted @ 2018-09-12 14:32 小虎Tiger
阅读(141)
评论(0)
推荐(0)
Thymeleaf 标准表达式语法
摘要: 变量表达式${ } 在控制器中往页面传递几个变量: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 @Controller public class IndexController { @RequestMapping(value="/index",method=RequestMet
阅读全文
posted @ 2018-09-12 12:23 小虎Tiger
阅读(1166)
评论(0)
推荐(0)
Thymeleaf 表达式工具类
摘要: Thymeleaf默认提供了丰富的表达式工具类,这里列举一些常用的工具类。 Objects工具类 1 2 3 4 5 6 7 8 /* * 当obj不为空时,返回obj,否则返回default默认值 * 其同样适用于数组、列表或集合 */ ${#objects.nullSafe(obj,defaul
阅读全文
posted @ 2018-09-12 12:20 小虎Tiger
阅读(3616)
评论(0)
推荐(0)
Thymeleaf 条件语句
摘要: Thymeleaf 条件语句 Posted on 2017-09-15 if 与 unless 假如现在有一个商品列表,当商品有评论时,显示view按钮,否则不显示。这时候就可以使用Thymeleaf的th:if标签来实现: 1 2 3 <a href="comments.html" th:href
阅读全文
posted @ 2018-09-12 12:14 小虎Tiger
阅读(330)
评论(0)
推荐(0)
springboot 中使用thymeleaf
摘要: Spring Boot支持FreeMarker、Groovy、Thymeleaf和Mustache四种模板解析引擎,官方推荐使用Thymeleaf。 spring-boot-starter-thymeleaf 在Spring Boot中使用Thymeleaf只需在pom中加入Thymeleaf的st
阅读全文
posted @ 2018-09-12 12:08 小虎Tiger
阅读(199)
评论(0)
推荐(0)
2018年9月11日
js中格式化时间
摘要: 调用方式:new Date( ).Format("yyyy-MM-dd");
阅读全文
posted @ 2018-09-11 17:29 小虎Tiger
阅读(1299)
评论(0)
推荐(0)
2018年8月6日
在springBoot在控制台打印sql语句
摘要: 在springBoot+Mybatis日志显示SQL的执行情况的最简单方法就是在properties新增: 注意:其中logging.level.com.你的Mapper包=日志等级
阅读全文
posted @ 2018-08-06 16:07 小虎Tiger
阅读(31563)
评论(0)
推荐(0)
2018年7月3日
springboot 的定时任务使用
摘要: 定时任务在Spring Boot中的集成 在启动类中加入开启定时任务的注解: 在SpringBoot中使用定时任务相当的简单。首先,我们在启动类中加入@EnableScheduling来开启定时任务。 这是必要的 然后: @Component public class QuartzService {
阅读全文
posted @ 2018-07-03 20:26 小虎Tiger
阅读(134)
评论(0)
推荐(0)
2018年6月28日
Lists、Sets、Maps和Collections2的使用
摘要: 1、Lists Java代码 //Lists System.out.println("### Lists ###"); ArrayList<String> arrayList = Lists.newArrayList(); arrayList.add("A"); arrayList.add("B")
阅读全文
posted @ 2018-06-28 13:03 小虎Tiger
阅读(1812)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
9
下一页
公告