- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我读过一些不错的帖子,比如 this one它解释了在给定 int
时接收序数的方法。
现在,我有一个 LocalDate 对象,我可以使用我的 Thymeleaf 模板中的任何 DateTimeFormat
模式来格式化我的日期。例如:
<strong th:text="${item.date} ? ${#temporals.format(item.date, 'dd')}"></strong>
问题:我怎样才能或者什么是实现与 post I linked to above 类似结果的最佳方法?在 thymeleaf 中。
我不是经验丰富的 Java 开发人员,因此如果您尽可能详尽地解释答案,那将非常有帮助。
最佳答案
在 Thymeleaf 的模板中,您可以 use static fields (和功能),所以在你的情况下它看起来像这样:
1) Code from the question you related (I just modified it a little bit) :
package your.packagename;
// http://code.google.com/p/guava-libraries
import static com.google.common.base.Preconditions.*;
public class YourClass {
public static String getDayOfMonthSuffix(String num) {
Integer n = Integer.valueOf(num == null ? "1" : num);
checkArgument(n >= 1 && n <= 31, "illegal day of month: " + n);
if (n >= 11 && n <= 13) {
return "th";
}
switch (n % 10) {
case 1: return "st";
case 2: return "nd";
case 3: return "rd";
default: return "th";
}
}
}
2) 在 View 中调用它:
<strong th:text="${#temporals.format(item.date, 'dd') + T(your.packagename.YourClass).getDayOfMonthSuffix(#temporals.format(item.date, 'dd'))}"></strong>
关于java - Spring Boot Thymeleaf 序号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36936910/
这个问题在这里已经有了答案: Batch renaming files with Bash (10 个答案) 关闭 6 年前。 我想将包含子目录的目录中的文件重命名为父目录名称+序号。 例如: he
我需要帮助! HTML 最佳答案 试试这个 var array = document.getElementById('wrapperDiv'); for (var i = 0, len = a
我正在本地主机上安装 SSL。当我尝试运行时 openssl genrsa -aes256 -out private.key 2048 cmd 中的命令,我收到错误警告。 The ordinal 3
我想做(某种程度上)与 this old post 相反的事情是关于; 这是我的示例表: ID NAME ---- ---- 1 Apple 2 Apple 3 Apple
我读过一些不错的帖子,比如 this one它解释了在给定 int 时接收序数的方法。 现在,我有一个 LocalDate 对象,我可以使用我的 Thymeleaf 模板中的任何 DateTimeFo
我是解码器和 FFmpeg 的新手。我需要的是实现可以通过某个步骤读取帧的逻辑(例如:20),换句话说,我有一个文件,我需要读取帧 0、20、40、60 ...... 我所做的是 AVFrame *
我安装了 "mysql-installer-community-8.0.16.0.msi" .安装期间一切顺利。我什至可以为我的项目创建一个新的数据库和表。我在 C++ 中使用它。编译和链接一切顺利。
有谁知道传递给 dwmapi.dll 序号 #113 的参数是什么? (Windows 7) 我正在尝试将此方法合并到我正在编写的应用程序中。据我所知,此方法负责为 Windows 执行 Aero p
我有一个在 Hibernate 的 EntityManager 中管理的实体。这个实体确实有一个由 ENUM 表示的状态。 Hibernate 确实将数据库中的 ENUM 值保存为整数。 当 ENUM
关于我的问题:Detect the the vtable offset of a specific virtual function (using Visual C++) : 给定: struct A
我刚刚在 Windows 10 上安装了 Anaconda 5.3 64 位 (Anaconda3-5.3.0-Windows-x86_64),但在尝试运行 Spyder 时出现此错误。 python
我是一名优秀的程序员,十分优秀!