SpringBoot的velocity自带工具类导入

SpringBoot结合velocity模板,可以通过toolbox来格式化时间
在resources目录下新建toolbox.xml文件,添加如下代码


<toolbox>
    <tool>
        <key>datekey>
        <scope>applicationscope>
         <class>org.apache.velocity.tools.generic.DateToolclass>
    tool>
toolbox>

在application.properties文件中添加配置:

spring.velocity.toolbox-config-location=toolbox.xml

使用:

$date.format('yyyy-MM-dd HH:mm:ss',$!{user.createdDate})

你可能感兴趣的:(springboot)