Skip to content

Commit c03fb15

Browse files
committed
Initial commit
0 parents  commit c03fb15

File tree

2 files changed

+129
-0
lines changed

2 files changed

+129
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.classpath
2+
.project
3+
target/
4+
bin/
5+
.settings/
6+
.idea/
7+
*.iml
8+

README.markdown

+121
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
2+
Thymeleaf - Module for Java 8 Time API compatibility
3+
====================================================
4+
5+
------------------------------------------------------------------------------
6+
7+
Status
8+
------
9+
10+
This is a *thymeleaf extras* module, not a part of the Thymeleaf core (and as
11+
such following its own versioning schema), but fully supported by the
12+
Thymeleaf team.
13+
14+
Current versions:
15+
16+
* **Version 2.1.3.RELEASE** - for Thymeleaf 2.1 (requires 2.1.3+)
17+
18+
19+
License
20+
-------
21+
22+
This software is licensed under the [Apache License 2.0]
23+
(http://www.apache.org/licenses/LICENSE-2.0.html).
24+
25+
26+
Requirements
27+
------------
28+
29+
* Java **8**
30+
* Thymeleaf **2.1.3+**
31+
* Attoparser **1.1+** [http://www.attoparser.org]
32+
33+
34+
Maven info
35+
----------
36+
37+
* groupId: `org.thymeleaf.extras`
38+
* artifactId: `thymeleaf-extras-java8time`
39+
40+
41+
Distribution packages
42+
---------------------
43+
44+
Distribution packages (binaries + sources + javadoc) can be downloaded from [SourceForge](http://sourceforge.net/projects/thymeleaf/files/thymeleaf-extras-java8time/).
45+
46+
47+
Installation
48+
------------
49+
50+
Just add the `org.thymeleaf.extras.java8time.dialect.Java8TimeDialect`
51+
class to the list of dialects in your TemplateEngine implementation, and you will
52+
have the #temporals object available to be used in your templates.
53+
54+
55+
Features
56+
--------
57+
58+
This module add a #temporals object similar to the #dates or #calendar ones in
59+
the Standard Dialect
60+
61+
```java
62+
/*
63+
* =============================================================================
64+
* See javadoc API for class org.thymeleaf.extras.java8time.expression.Temporals
65+
* =============================================================================
66+
*/
67+
68+
/*
69+
* Format date with the standard locale format
70+
* Also works with arrays, lists or sets
71+
*/
72+
${#temporals.format(temporal)}
73+
${#temporals.arrayFormat(temporalsArray)}
74+
${#temporals.listFormat(temporalsList)}
75+
${#temporals.setFormat(temporalsSet)}
76+
77+
/*
78+
* Format date with the specified pattern
79+
* Also works with arrays, lists or sets
80+
*/
81+
${#temporals.format(temporal, 'dd/MMM/yyyy HH:mm')}
82+
${#temporals.arrayFormat(temporalsArray, 'dd/MMM/yyyy HH:mm')}
83+
${#temporals.listFormat(temporalsList, 'dd/MMM/yyyy HH:mm')}
84+
${#temporals.setFormat(temporalsSet, 'dd/MMM/yyyy HH:mm')}
85+
86+
/*
87+
* Obtain date properties
88+
* Also works with arrays, lists or sets
89+
*/
90+
${#temporals.day(temporal)} // also arrayDay(...), listDay(...), etc.
91+
${#temporals.month(temporal)} // also arrayMonth(...), listMonth(...), etc.
92+
${#temporals.monthName(temporal)} // also arrayMonthName(...), listMonthName(...), etc.
93+
${#temporals.monthNameShort(temporal)} // also arrayMonthNameShort(...), listMonthNameShort(...), etc.
94+
${#temporals.year(temporal)} // also arrayYear(...), listYear(...), etc.
95+
${#temporals.dayOfWeek(temporal)} // also arrayDayOfWeek(...), listDayOfWeek(...), etc.
96+
${#temporals.dayOfWeekName(temporal)} // also arrayDayOfWeekName(...), listDayOfWeekName(...), etc.
97+
${#temporals.dayOfWeekNameShort(temporal)} // also arrayDayOfWeekNameShort(...), listDayOfWeekNameShort(...), etc.
98+
${#temporals.hour(temporal)} // also arrayHour(...), listHour(...), etc.
99+
${#temporals.minute(temporal)} // also arrayMinute(...), listMinute(...), etc.
100+
${#temporals.second(temporal)} // also arraySecond(...), listSecond(...), etc.
101+
${#temporals.millisecond(temporal)} // also arrayMillisecond(...), listMillisecond(...), etc.
102+
103+
/*
104+
* Create temporal (java.time.Temporal) objects from its components
105+
*/
106+
${#temporals.create(year,month,day)}
107+
${#temporals.create(year,month,day,hour,minute)}
108+
${#temporals.create(year,month,day,hour,minute,second)}
109+
${#temporals.create(year,month,day,hour,minute,second,millisecond)}
110+
111+
/*
112+
* Create a temporal (java.time.Temporal) object for the current date and time
113+
*/
114+
${#temporals.createNow()}
115+
116+
/*
117+
* Create a temporal (java.time.Temporal) object for the current date (time set to 00:00)
118+
*/
119+
${#temporals.createToday()}
120+
```
121+

0 commit comments

Comments
 (0)