我可以使用SSR(结构搜索和替换)在我的项目中轻松找到所有提及的注释.例如,我有以下基于弹簧的代码:
class DashboardController {
@RequestMapping("/dashboard")
public void doDashboard() {
[...]
}
}
如果我通过模式搜索org.springframework.web.bind.annotation.RequestMapping而不是我会找到我的代码.但是如果我想找到用参数化注释注释的方法,那么如果只找到注释@RequestMapping用于“/ dashboard”url的方法呢?
我可以通过@RequestMapping(“/ dashboard”)字符串进行搜索,但注释可以用几种方式编写:
@RequestMapping("/dashboard")
@RequestMapping(value = "/dashboard",method = {RequestMethod.POST})
@RequestMapping(headers = "content-type=application/*",value = "/dashboard")
等等
最佳答案
原文链接:https://www.f2er.com/idea/437712.html