Skip to content
Advertisement

Is there any way to inject Interceptor from external library in Spring?

I’m developing a jar library and trying to inject an interceptor from external jar library to Application.

For example:

External Lib

MyExternalInterceptor.java

JavaScript

I tried to using AOP in external libs but it’s not working.

InterceptorAspect.java

JavaScript

In Application using that lib:

Application

MyConfiguration.java

JavaScript

Is there any way to inject an interceptor from external lib to App?

I know the question is very obscure (sorry for that), but could you give me any advice or hint to make it work?

Thank you for anyone who read my question 🙂

(I updated few more details for clarification)

Advertisement

Answer

Summary

  • Use WebMvcConfigurer in both Client and library side instead of WebMvcConfigurationSupport
  • AoP is not needed

I use WebMvcConfigurer instead of WebMvcConfigurationSupport and change some codes like below:

External Lib

MyExternalInterceptor.java

  • Same as before

InterfaceAspect.java

  • Don’t needed it anymore

MyExternalLibConfiguration.java

JavaScript

Application (client)

MyConfiguration.java

JavaScript

That’s all! Everything is working well as M. Deinum said in comment.

Thank you again Deinum!

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement