Notes by meiu
Displaying keyword search results 1 - 3
Created by meiu on October 14, 2011 14:21:39
Last update: October 14, 2011 14:22:24
This works for Eclipse Indigo.
From the Help menu, select Install New Software...
Select --All Available Sites-- for the Work with dropdown
Enter maven in filter text
Check m2e and install:
Created by meiu on July 21, 2011 09:34:10
Last update: July 21, 2011 11:00:42
Click Project -> Properties
Select "Builders"
Click "New", select "Ant Builder", click "OK"
Select the Buildfile, set the Base Directory
Set targets
You may or may not want the default "Java Builder". Uncheck it if you don't
want to run the default builder.
Created by meiu on July 07, 2010 15:16:34
Last update: July 07, 2010 15:17:08
Example:
<%@ taglib prefix="fmt" uri="http://java.sun.com/j...
Full attributes:
Attribute Meaning
value Date object to be formatted
type Format time only ('time'), date only ('date'), or both date and time ('both')?
dateStyle Style to format date, e.g., default, short, long, full etc (c.f. JavaDoc for java.text.DateFormat)
timeStyle Style for format time, e.g., default, short, long, full etc (c.f. JavaDoc for java.text.DateFormat)
pattern User defined pattern, e.g., MM/dd/yyyy
timeZone Which time zone to display the date for?
var If the var attribute is specified, then a String value containing the formatted date is assigned to the named variable. Otherwise, the <fmt:formatDate> tag will write out the formatting results.
scope When the var attribute is present, the scope attribute specifies the scope of the resulting variable.
.