Possible Duplicate:
How to reference constants in EL?
I have a Seam JSF application. I have a Constants.java class which has
public static final String BLAH_STR = "HA_HA";
I have to use BLAH_STR in EL. #{Constants.BLAH_STR} is not working. I have not defined Constants.java as a Seam class. How can I solve it?