我可以在另一个模块中使用 WebMvcConfigurer 的实例吗?
Posted
技术标签:
【中文标题】我可以在另一个模块中使用 WebMvcConfigurer 的实例吗?【英文标题】:Can I use an instance of a WebMvcConfigurer in another module? 【发布时间】:2021-12-22 19:53:06 【问题描述】:我编写了一个拦截器来为 SpringBoot Java Rest API 生成服务日志。我有下面的代码来定义自定义 WebMvcConfigurer:
package com.gem.common.interceptors;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class InterceptorConfig implements WebMvcConfigurer
@Autowired
LoggerInterceptor logInterceptor;
@Override
public void addInterceptors(InterceptorRegistry registry)
registry.addInterceptor(logInterceptor);
我想在不同的模块中使用这个 InterceptorConfig。可以打包使用还是需要在每个模块中定义?
【问题讨论】:
你为什么不能这样做? Spring Boot 对其他各种拦截器也是如此。 【参考方案1】:我想对于“其他模块”,您是在问是否可以将该代码也提供给其他 Spring Boot 应用程序?
如果是这种情况 - 那么:是的,您可以将其打包到 jar 中,并将其作为依赖项添加到所有其他模块。但是,我将在下面发布执行此操作的方法-只是警告您-如果只是针对那个简单的类,则该解决方案将不值得。
简而言之,您需要做的是创建自己的外部工件(这通常通过 maven 或 gradle 完成。您为共享代码创建一个新的 maven 项目。它需要依赖于一些基础库这样您就可以使用@Configuration
注释。按照该项目中的说明放置您的类,并创建一个文件src/main/resources/META-INF/spring.factories
文件。There you'll need to point to that class。
然后您构建该项目并将生成的 jar 上传到包存储库。完成后,您可以将其作为依赖项添加到您的项目中。在启动时,Spring boot 会找到 spring.factories
文件并自动包含在其初始化中提到的类。
还请注意,这只是一个高级解释,您需要更多详细信息。春天has good documentation on this use case,他们也有一个demo project to show this extension mechanism。
【讨论】:
以上是关于我可以在另一个模块中使用 WebMvcConfigurer 的实例吗?的主要内容,如果未能解决你的问题,请参考以下文章