springboot获得本地时间
时间: 2023-05-28 19:05:10 浏览: 161
在Spring Boot中,可以使用Java 8中的LocalDateTime类来获取本地时间。可以使用以下代码获取当前本地时间:
```java
import java.time.LocalDateTime;
LocalDateTime localDateTime = LocalDateTime.now();
System.out.println("Local date and time: " + localDateTime);
```
输出将类似于:
```
Local date and time: 2021-09-20T16:33:21.891
```
您还可以使用DateTimeFormatter类将LocalDateTime对象格式化为所需的字符串格式,例如:
```java
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime localDateTime = LocalDateTime.now();
String formattedDateTime = localDateTime.format(formatter);
System.out.println("Formatted date and time: " + formattedDateTime);
```
输出将类似于:
```
Formatted date and time: 2021-09-20 16:33:21
```
阅读全文