当前位置: 首页>>代码示例>>Java>>正文


Java ReflectionUtils.isObjectMethod方法代码示例

本文整理汇总了Java中org.springframework.util.ReflectionUtils.isObjectMethod方法的典型用法代码示例。如果您正苦于以下问题:Java ReflectionUtils.isObjectMethod方法的具体用法?Java ReflectionUtils.isObjectMethod怎么用?Java ReflectionUtils.isObjectMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.util.ReflectionUtils的用法示例。


在下文中一共展示了ReflectionUtils.isObjectMethod方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: invoke

import org.springframework.util.ReflectionUtils; //导入方法依赖的package包/类
/**
 * 关于这个方法,还发现了一个很神奇的现象。。。
 * 当我调试时,偶尔会发现微信会收到消息,消息内容是被代理的对象的toString(),这就奇怪了,从哪里来的呢?
 * 而且不调试时没这个问题。。。仔细分析发现,应该就是和调试时调试器会调用对象的toString方法导致的
 * 因为调用了代理对象的toString,进入这个拦截器,只要进入这个拦截器,最终就会调用send。因为toString()最终返回string,故会发出那个消息。。。
 * 又一次被调试时toString坑了。添加方法过滤解决此问题。
 *
 * @param invocation
 * @return
 * @throws Throwable
 */
@Override
public Object invoke(final MethodInvocation invocation) throws Throwable {
    if (ReflectionUtils.isObjectMethod(invocation.getMethod())) {
        return ReflectionUtils.invokeMethod(invocation.getMethod(), invocation.getThis(), invocation.getArguments());
    }
    WxRequest wxRequest = WxWebUtils.getWxRequestFromRequest();
    wxAsyncMessageTemplate.send(wxRequest, () -> {
        try {
            return invocation.proceed();
        } catch (Throwable e) {
            throw new WxApiException(e.getMessage(), e);
        }
    });
    return null;
}
 
开发者ID:FastBootWeixin,项目名称:FastBootWeixin,代码行数:27,代码来源:WxAsyncMethodInterceptor.java

示例2: invoke

import org.springframework.util.ReflectionUtils; //导入方法依赖的package包/类
/**
 * 后续加上缓存,一定要加
 *
 * @param inv
 * @return dummy
 * @throws Throwable
 */
@Override
public Object invoke(MethodInvocation inv) throws Throwable {
    if (ReflectionUtils.isObjectMethod(inv.getMethod())) {
        if ("toString".equals(inv.getMethod().getName())) {
            return clazz.getName();
        }
        return ReflectionUtils.invokeMethod(inv.getMethod(), inv.getThis(), inv.getArguments());
    }
    WxApiMethodInfo wxApiMethodInfo = methodCache.get(inv.getMethod());
    if (wxApiMethodInfo == null) {
        wxApiMethodInfo = new WxApiMethodInfo(inv.getMethod(), wxApiTypeInfo);
        methodCache.put(inv.getMethod(), wxApiMethodInfo);
    }
    return wxApiExecutor.execute(wxApiMethodInfo, inv.getArguments());
}
 
开发者ID:FastBootWeixin,项目名称:FastBootWeixin,代码行数:23,代码来源:WxInvokerProxyFactoryBean.java

示例3: isObjectMethod

import org.springframework.util.ReflectionUtils; //导入方法依赖的package包/类
private static boolean isObjectMethod(Method method) {
    return OBJECT_METHOD_NAMES.contains(method.getName()) && ReflectionUtils.isObjectMethod(method);
}
 
开发者ID:cybozu,项目名称:spring-data-jdbc-template,代码行数:4,代码来源:EntityUtils.java


注:本文中的org.springframework.util.ReflectionUtils.isObjectMethod方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。