无法直接从JSTL调用方法,因此我使用了一种黑客:快速映射:
public abstract class QuickMap<K,V> implements Map<K,V> {
@Override
public abstract V get(Object key);
@Override
public final int size() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final boolean isEmpty() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final boolean containsKey(Object key) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final boolean containsValue(Object value) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final V put(K key, V value) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final V remove(Object key) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final void putAll(Map<? extends K, ? extends V> m) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final void clear() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final Set<K> keySet() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final Collection<V> values() {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public final Set<Entry<K, V>> entrySet() {
throw new UnsupportedOperationException("Not supported yet.");
}
}
public Map<Object,String> getStudentPictureIds() {
return new QuickMap<Object,String>() {
@Override
public String get(Object k) {
PictureTypeEnum type;
if (k instanceof PictureTypeEnum) {
type = (PictureTypeEnum)k;
} else {
type = PictureTypeEnum.valueOf(k.toString());
}
return getStudentPictureId(type);
}
};
}
并不是说用JSTL操作枚举不容易,所以该方法也接受字符串。
您可以在JSP中使用它,如下所示:
<c:out value="${student.pictureIds['StudentCard']}"/>