使用 MethodBeforeAdvice、MethodInterceptor、MethodBeforeAdvice 使用的最小 JAR
Spring 发行版以及使用 MethodBeforeAdvice
、MethodInterceptor
、MethodBeforeAdvice
的应用程序工作所需的最少 JAR 是什么?
What are the minimum JARs required from the Spring distribution and otherwise to make an application that uses MethodBeforeAdvice
, MethodInterceptor
, MethodBeforeAdvice
work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
spring-aop.jar 和 aopalliance-1.0.jar。 spring-aop 依赖于 asm.jar
正如 Donal 所指出的,只有在没有接口的情况下让 spring 为具体类代理时才需要 cglib。
spring-aop.jar and aopalliance-1.0.jar. spring-aop depends on asm.jar
As Donal noted, you need cglib only of you are having spring make proxies of concrete classes without an interface.