springboot页面显示日期
时间: 2023-10-28 18:04:54 浏览: 66
springboot+mongodb 实现按日期分组分页查询功能
在Spring Boot中,可以使用Thymeleaf模板引擎来显示日期。以下是在Thymeleaf模板中如何显示日期的示例代码:
```
<p th:text="${#dates.format(date, 'yyyy-MM-dd HH:mm:ss')}">2022-01-01 12:00:00</p>
```
在这个例子中,我们使用了`#dates.format()`函数来格式化日期。该函数接受两个参数:日期对象和日期格式字符串。在这个例子中,我们将日期格式化为`yyyy-MM-dd HH:mm:ss`的格式并将其显示在页面上。
你也可以在代码中获取当前日期对象,然后将其传递到模板中进行显示。以下是一个示例控制器代码:
```java
@Controller
public class MyController {
@GetMapping("/")
public String index(Model model) {
model.addAttribute("date", new Date());
return "index";
}
}
```
在这个例子中,我们将当前日期对象添加到模型中,并将其命名为`date`。然后,在模板中,我们可以使用`${date}`来访问该对象,并使用`#dates.format`函数来格式化它。
希望这可以帮助到你!
阅读全文