建议spring mvc http消息转换器



我正在尝试建议spring http消息转换器,但是,我不能让它工作。

@Pointcut("within(org.springframework.http.converter.xml.MarshallingHttpMessageConverter)")
public void converterPointcut() {
}
@Pointcut("execution(* *(..))")
public void converterMethodPointcut() {
}
@Around("converterPointcut() && converterMethodPointcut()")
public Object aroundConverter(ProceedingJoinPoint iJoinPoint) {
    Object aProceed = null;
    try {
        aProceed = iJoinPoint.proceed();
    } catch (Throwable anException) {
        anException.printStackTrace();
    }
    return aProceed;
}

有什么问题吗?

a)使用within,您只建议MarshallingHttpMessageConverter类的方法,您确定这是您想要的吗?

b)要编织一个库类,您需要设置加载时间编织或通过aspectj编译器运行spring jar(哎呀,不要这样做)。你有装载时间编织设置吗?

c) define不能让它工作:发生了什么,没有发生什么?


更新:我认为你正在试图解决错误的问题。不使用AspectJ,只是扩展类(没有一个方法是final),并将扩展类注册为HttpMessageConverter

相关内容

  • 没有找到相关文章

最新更新