হ্যা, তুমি পারো. আপনার একটি কাস্টম ট্যাগ প্রয়োজন (যদি আপনি এটি অন্য কোথাও খুঁজে না পান)। আমি এটি করেছি:
package something;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.Map;
import java.util.TreeMap;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
import org.apache.taglibs.standard.tag.el.core.ExpressionUtil;
/**
* Get all class constants (statics) and place into Map so they can be accessed
* from EL.
* @author Tim.sabin
*/
public class ConstMapTag extends TagSupport {
public static final long serialVersionUID = 0x2ed23c0f306L;
private String path = "";
private String var = "";
public void setPath (String path) throws JspException {
this.path = (String)ExpressionUtil.evalNotNull ("constMap", "path",
path, String.class, this, pageContext);
}
public void setVar (String var) throws JspException {
this.var = (String)ExpressionUtil.evalNotNull ("constMap", "var",
var, String.class, this, pageContext);
}
public int doStartTag () throws JspException {
// Use Reflection to look up the desired field.
try {
Class<?> clazz = null;
try {
clazz = Class.forName (path);
} catch (ClassNotFoundException ex) {
throw new JspException ("Class " + path + " not found.");
}
Field [] flds = clazz.getDeclaredFields ();
// Go through all the fields, and put static ones in a Map.
Map<String, Object> constMap = new TreeMap<String, Object> ();
for (int i = 0; i < flds.length; i++) {
// Check to see if this is public static final. If not, it's not a constant.
int mods = flds [i].getModifiers ();
if (!Modifier.isFinal (mods) || !Modifier.isStatic (mods) ||
!Modifier.isPublic (mods)) {
continue;
}
Object val = null;
try {
val = flds [i].get (null); // null for static fields.
} catch (Exception ex) {
System.out.println ("Problem getting value of " + flds [i].getName ());
continue;
}
// flds [i].get () automatically wraps primitives.
// Place the constant into the Map.
constMap.put (flds [i].getName (), val);
}
// Export the Map as a Page variable.
pageContext.setAttribute (var, constMap);
} catch (Exception ex) {
if (!(ex instanceof JspException)) {
throw new JspException ("Could not process constants from class " + path);
} else {
throw (JspException)ex;
}
}
return SKIP_BODY;
}
}
এবং ট্যাগ বলা হয়:
<yourLib:constMap path="path.to.your.constantClass" var="consts" />
সমস্ত পাবলিক স্ট্যাটিক চূড়ান্ত ভেরিয়েবলগুলি তাদের জাভা নাম অনুসারে একটি মানচিত্রে স্থাপন করা হবে, যদি তাই হয়
public static final int MY_FIFTEEN = 15;
তারপরে ট্যাগটি এটি একটি পূর্ণসংখ্যার মধ্যে আবদ্ধ করবে এবং আপনি এটি কোনও জেএসপিতে উল্লেখ করতে পারেন:
<c:if test="${consts['MY_FIFTEEN'] eq 15}">
এবং আপনি লেখক লিখতে হবে না!