21

次のインターフェースを検討してください。

public interface I {
    default String getProperty() {
        return "...";
    }
}

そして、デフォルトの実装を再利用するだけの実装クラス:

public final class C implements I {
    // empty
}

のインスタンスがCJSP EL スクリプト コンテキストで使用される場合は常に、次のようになります。

<jsp:useBean id = "c" class = "com.example.C" scope = "request"/>
${c.property}

-- 私は以下を受け取りますPropertyNotFoundException:

javax.el.PropertyNotFoundException: Property 'property' not found on type com.example.C
    javax.el.BeanELResolver$BeanProperties.get(BeanELResolver.java:268)
    javax.el.BeanELResolver$BeanProperties.access$300(BeanELResolver.java:221)
    javax.el.BeanELResolver.property(BeanELResolver.java:355)
    javax.el.BeanELResolver.getValue(BeanELResolver.java:95)
    org.apache.jasper.el.JasperELResolver.getValue(JasperELResolver.java:110)
    org.apache.el.parser.AstValue.getValue(AstValue.java:169)
    org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:184)
    org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate(PageContextImpl.java:943)
    org.apache.jsp.index_jsp._jspService(index_jsp.java:225)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:438)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:396)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:340)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

私の最初の考えは、Tomcat 6.0 は Java 1.8 の機能には古すぎるものでしたが、Tomcat 8.0 も影響を受けていることに驚きました。もちろん、デフォルトの実装を明示的に呼び出すことで問題を回避できます。

    @Override
    public String getProperty() {
        return I.super.getProperty();
    }

-- しかし、いったいなぜデフォルトのメソッドが Tomcat にとって問題になるのでしょうか?

更新: さらにテストを行うと、デフォルトのプロパティが見つからないことが明らかになりましたが、デフォルトのメソッドは見つかりました。別の回避策 (Tomcat 7 以降) は次のとおりです。

<jsp:useBean id = "c" class = "com.example.C" scope = "request"/>
<%-- ${c.property} --%>
${c.getProperty()}
4

2 に答える 2

8

ELResolverデフォルトのメソッドを処理するカスタム実装を作成することで、これを回避できます。ここで行った実装は extendsSimpleSpringBeanELResolverです。これはSpringsの実装ですELResolverが、同じ考え方はSpringがなくても同じはずです。

このクラスは、Bean のインターフェースで定義された Bean プロパティのシグネチャを探し、それらを使用しようとします。インターフェイスで bean prop シグネチャが見つからない場合、デフォルト動作のチェーンに送信し続けます。

import org.apache.commons.beanutils.PropertyUtils;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.access.el.SimpleSpringBeanELResolver;

import javax.el.ELContext;
import javax.el.ELException;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.util.Optional;
import java.util.stream.Stream;

/**
 * Resolves bean properties defined as default interface methods for the ELResolver.
 * Retains default SimpleSpringBeanELResolver for anything which isn't a default method.
 *
 * Created by nstuart on 12/2/2016.
 */
public class DefaultMethodELResolver extends SimpleSpringBeanELResolver {
    /**
     * @param beanFactory the Spring BeanFactory to delegate to
     */
    public DefaultMethodELResolver(BeanFactory beanFactory) {
        super(beanFactory);
    }

    @Override
    public Object getValue(ELContext elContext, Object base, Object property) throws ELException {

        if(base != null && property != null) {
            String propStr = property.toString();
            if(propStr != null) {
                Optional<Object> ret = attemptDefaultMethodInvoke(base, propStr);
                if (ret != null) {
                    // notify the ELContext that our prop was resolved and return it.
                    elContext.setPropertyResolved(true);
                    return ret.get();
                }
            }
        }

        // delegate to super
        return super.getValue(elContext, base, property);
    }

    /**
     * Attempts to find the given bean property on our base object which is defined as a default method on an interface.
     * @param base base object to look on
     * @param property property name to look for (bean name)
     * @return null if no property could be located, Optional of bean value if found.
     */
    private Optional<Object> attemptDefaultMethodInvoke(Object base, String property) {
        try {
            // look through interfaces and try to find the method
            for(Class<?> intf : base.getClass().getInterfaces()) {
                // find property descriptor for interface which matches our property
                Optional<PropertyDescriptor> desc = Stream.of(PropertyUtils.getPropertyDescriptors(intf))
                        .filter(d->d.getName().equals(property))
                        .findFirst();

                // ONLY handle default methods, if its not default we dont handle it
                if(desc.isPresent() && desc.get().getReadMethod() != null && desc.get().getReadMethod().isDefault()) {
                    // found read method, invoke it on our object.
                    return Optional.ofNullable(desc.get().getReadMethod().invoke(base));
                }
            }
        } catch (InvocationTargetException | IllegalAccessException e) {
            throw new RuntimeException("Unable to access default method using reflection", e);
        }

        // no value found, return null
        return null;
    }

}

ELResolver次に、アプリケーションのどこかに登録する必要があります。私の場合、Spring の Java 構成を使用しているため、次のようになります。

@Configuration
...
public class SpringConfig extends WebMvcConfigurationSupport {
    ...
    @Override
    public void configureDefaultServletHandling(DefaultServletHandlerConfigurer configurer) {
        ...
        // add our default method resolver to our ELResolver list.
        JspApplicationContext jspContext = JspFactory.getDefaultFactory().getJspApplicationContext(getServletContext());
        jspContext.addELResolver(new DefaultMethodELResolver(getApplicationContext()));
    }
}

それがリゾルバーを追加するのに適切な場所であるかどうかは 100% 確信が持てませんが、問題なく動作します。中に ELResolver をロードすることもできますjavax.servlet.ServletContextListener.contextInitialized

これELResolverが参照です:http://docs.oracle.com/javaee/7/api/javax/el/ELResolver.html

于 2016-12-03T00:35:09.393 に答える