springboot获取当前时间
时间: 2023-10-13 13:19:04 浏览: 416
在Spring Boot中,你可以使用Java 8的新日期时间API来获取当前时间。以下是一个示例代码,可以获取当前时间并将其输出到控制台:
```java
import java.time.LocalDateTime;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TimeController {
@GetMapping("/current-time")
public String getCurrentTime() {
LocalDateTime currentTime = LocalDateTime.now();
return "Current time is: " + currentTime.toString();
}
}
```
在上面的代码中,我们使用`LocalDateTime.now()`方法获取当前时间,并将其格式化为字符串返回给调用者。我们还使用`@RestController`注解来将该类标记为一个RESTful服务,使用`@GetMapping`注解来指定该服务的路径为`/current-time`。
相关问题
springboot获取当前时间时间戳
在Spring Boot中,获取当前时间的时间戳非常简单,通常我们会使用`java.time.LocalDateTime`或者`LocalDate`、`LocalTime`等类配合`Instant`或`System.currentTimeMillis()`方法。以下是一个示例:
```java
import java.time.Instant;
import java.time.LocalDateTime;
// 使用Instant类获取当前时间的时间戳
Long currentTimeTimestamp = Instant.now().toEpochMilli();
// 或者直接从系统时间获取
Long systemCurrentTimestamp = System.currentTimeMillis();
// 如果需要日期部分单独获取
LocalDateTime now = LocalDateTime.now();
long dateTimestamp = now.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
```
springboot获取当前时间秒数
可以使用Java 8中的`Instant`类来获取当前时间的秒数。以下是一个示例代码:
```java
import java.time.Instant;
public class CurrentTimeInSeconds {
public static void main(String[] args) {
Instant instant = Instant.now();
long currentTimeInSeconds = instant.getEpochSecond();
System.out.println(currentTimeInSeconds);
}
}
```
运行上述代码将输出当前时间的秒数。
阅读全文