📄 expressionevaluatorproxy.java
字号:
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.pluto.tags.el;
import java.lang.reflect.Method;
import java.util.Iterator;
import java.util.Map;
import java.util.TreeMap;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
public abstract class ExpressionEvaluatorProxy
{
private static final Map<String, String> FACTORIES = new TreeMap<String, String>();
private static ExpressionEvaluatorProxy proxy;
static {
FACTORIES.put("getELContext", "JSP21ExpressionEvaluatorProxy");
FACTORIES.put("getExpressionEvaluator", "JSP20ExpressionEvaluatorProxy");
// And finally, a default that should always be provided, but for which an additional jar is needed.
FACTORIES.put("getRequest", "ApacheTaglibStandardExpressionEvaluatorProxy");
Iterator<Map.Entry<String, String>> entrySetIterator = FACTORIES.entrySet().iterator();
while(entrySetIterator.hasNext()) {
Map.Entry<String, String> entry = entrySetIterator.next();
if(isPageContextMethodAvailable(entry.getKey().toString())) {
try {
String className =
ExpressionEvaluatorProxy.class.getPackage().getName()+"."+entry.getValue();
Class<?> proxyClass = Class.forName(className);
proxy = (ExpressionEvaluatorProxy)proxyClass.newInstance();
if(proxy != null) {
break;
}
} catch (ClassNotFoundException e) {
throw new RuntimeException("Unable to find ExpressionEvaluatorProxy '"+entry.getValue()+"'");
} catch (IllegalAccessException e) {
throw new RuntimeException("Unable to access ExpressionEvaluatorProxy '"+entry.getValue()+"'");
} catch (InstantiationException e) {
throw new RuntimeException("Unable to instantiate ExpressionEvaluatorProxy '"+entry.getValue()+"'");
}
}
}
if(proxy == null)
{
throw new RuntimeException("Unable to find a supported proxy");
}
}
public static ExpressionEvaluatorProxy getProxy() {
return proxy;
}
private static boolean isPageContextMethodAvailable(String signature) {
try {
Method method = PageContext.class.getMethod(signature);
return method != null;
} catch (NoSuchMethodException e) {
return false;
}
}
public abstract String evaluate(String value, PageContext pageContext)
throws JspException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -