springboot获取当前时间
时间: 2023-07-06 18:43:01 浏览: 360
可以使用Java8中的LocalDateTime类来获取当前时间。在Spring Boot中,可以注入LocalDateTime类型的Bean来获取当前时间,或者使用Java的System类获取当前时间。
下面是获取当前时间的示例代码:
```java
import java.time.LocalDateTime;
@Component
public class MyComponent {
public LocalDateTime getCurrentTime() {
return LocalDateTime.now();
}
}
```
在上面的代码中,我们使用@Component注解将MyComponent类声明为一个Spring组件,并注入一个LocalDateTime类型的Bean来获取当前时间。调用getCurrentTime()方法即可获取当前时间。
相关问题
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);
}
}
```
运行上述代码将输出当前时间的秒数。
阅读全文