如何在 SpEL 中表达日期文字?
How to express date literal in SpEL?
官方spring reference中说
The types of literal expressions supported are strings, dates, numeric values (int, real, and hex), boolean and null.
但是本文档中没有日期文字的示例。我在 Internet 上搜索但没有找到任何内容。
那么如何在 SpEL 中表达日期文字?
谢谢!
更新
这是一个 spring 参考文档问题。参见 https://jira.spring.io/browse/SPR-14987。
日期字面值 didn't make the cut. I have opened a JIRA issue 与参考文档不同。
register your own function 很容易(例如,使用 SimpleDateFormatter
来解析日期)。
官方spring reference中说
The types of literal expressions supported are strings, dates, numeric values (int, real, and hex), boolean and null.
但是本文档中没有日期文字的示例。我在 Internet 上搜索但没有找到任何内容。
那么如何在 SpEL 中表达日期文字?
谢谢!
更新
这是一个 spring 参考文档问题。参见 https://jira.spring.io/browse/SPR-14987。
日期字面值 didn't make the cut. I have opened a JIRA issue 与参考文档不同。
register your own function 很容易(例如,使用 SimpleDateFormatter
来解析日期)。