gpt4 book ai didi

spring - @RestControllerAdvice 中许多项目的 basePacakage

转载 作者:行者123 更新时间:2023-12-04 16:10:51 28 4
gpt4 key购买 nike

我有多个子项目的父项目。所有项目都以 basepakage org.dordas.{project name}.web.controller 开头。我想用一个基础包配置 controllerAdvice 中的所有项目,但(星号)不工作。

@RestControllerAdvice(basePackages = { "org.baharan.**.web.rest" })

最佳答案

假设:

project
|___ lib (module)
|___ api (module)

您想将 RestControllerAdvicelib 模块 共享到 api 模块

lib模块

@RestControllerAdvice
public class ExceptionAdvice {

@ExceptionHandler
public Type handler(Exception e){.....}

}

api模块中添加以下配置

@SpringBootApplication
@Import({ExceptionAdvice.class})
public class FileServiceApplication {... }

关于spring - @RestControllerAdvice 中许多项目的 basePacakage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41930985/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com