Archive | September 24th, 2008

Advantages and Disadvantages – JSF

September 24, 2008

0 Comments

JSF is becoming more popular framework for user interface layer development, many architects and companies assuming that Struts is becoming outdated and JSF is catching up the market. I am not sure whether it is true at this point of time. However I would like express my critic on the advantages and disadvantages of JSF. [...]

email

Custom DateTimeConverter in JSF

September 24, 2008

1 Comment

By default JSF using GMT timezone to convert the date into display format. Here is a simple solution where you can provide your custom date time converter. 1) Write a new custom converter by extending existing DateTimeConverter class. 1 2 3 4 5 6 7 8 9 10 11 package com.company.project.converter; import java.util.TimeZone; import javax.faces.convert.DateTimeConverter; [...]