码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot学习笔记

时间:2016-03-23 06:07:26      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

例子1:   http://spring.io/guides/gs/rest-service/

字符串填充,如%s

private static final String template = "Hello, %s!";
String name = "wwj";
String.format(template, name);

自增类型

private final AtomicLong counter = new AtomicLong();
counter.incrementAndGet();

@RequestMapping  @RequestParam

@RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value="name", defaultValue="World"){...}

例子2:   http://spring.io/guides/gs/scheduling-tasks/

按格式输出时间

private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
dateFormat.format(new Date());

@Scheduled  定时运行

@Scheduled(fixedRate = 5000);     //加在一个小函数前面?
@EnableScheduling //加在程序主入口前面

例子3:  http://spring.io/guides/gs/device-detection/

@ResponseBody 转为HTTP返回

public @ResponseBody String detectDevice(Device device) {
    ...
    return "Hello " + deviceType + " browser!";
}

设备类型判断

import org.springframework.mobile.device.Device;
Device device;
device.isNormal();
device.isMobile();
device.isTablet();

 

Spring Boot学习笔记

标签:

原文地址:http://www.cnblogs.com/wwjyt/p/5309441.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!