Spring Boot学习笔记

Posted WwjYt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot学习笔记相关的知识,希望对你有一定的参考价值。

例子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学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot学习笔记

Spring boot 学习笔记

Spring Boot 学习笔记一(Spring Boot 介绍)

spring boot学习笔记

Spring Boot学习笔记——Spring Boot与Redis的集成

Spring Boot 学习笔记