gateway报错class path resource [org/springframework/web/servlet/mvc/method/annotation/ResponseBodyAdvi
原因:gateway引入了自定义的common包.里边定义了统一返回值处理方法@RestControllerAdvice(basePackages = {"com.*"}) // 这里要加上需要扫描的包public class ResponseControllerAdvice implements ResponseBodyAdvice<Object> {}因为gateway不能使用we
·
原因:
gateway
引入了自定义的common
包.
里边定义了统一返回值处理方法
@RestControllerAdvice(basePackages = {"com.*"}) // 这里要加上需要扫描的包
public class ResponseControllerAdvice implements ResponseBodyAdvice<Object> {
}
因为gateway
不能使用web-starter
所以报ResponseBodyAdvice找不到
这个错误
修改结果
- 方法1
这种方法的缺点时有多少个这种类型的类,就需要修改多少地方
@RestControllerAdvice(basePackages = {"com.*"}) // 这里要加上需要扫描的包
@ConditionalOnClass(ResponseBodyAdvice.class)
public class ResponseControllerAdvice implements ResponseBodyAdvice<Object> {
}
- 方法2
这种方式解决后不能自动扫描到
common
中的代码,如果需要个别路径下的代码,可以在启动类上添加注解@ComponentScan
将gateway
的启动类放到与其他代码不一样的路径下边
如:
gateway
启动类路径为com.a.GatewayApplication.java
common
包的路径为com.b.*.ResponseControllerAdvice .java
更多推荐
已为社区贡献3条内容
所有评论(0)