How to set base url for rest in spring boot?

后端 未结 18 2363
日久生厌
日久生厌 2020-11-28 03:23

I\'m trying to to mix mvc and rest in a single spring boot project.

I want to set base path for all rest controllers (eg. example.com/api) in a single place (I don\'

18条回答
  •  囚心锁ツ
    2020-11-28 03:58

    You can create a custom annotation for your controllers:

    @Target(ElementType.TYPE)
    @Retention(RetentionPolicy.RUNTIME)
    @RestController
    @RequestMapping("/test")
    public @interface MyRestController {
    }
    

    Use it instead of the usual @RestController on your controller classes and annotate methods with @RequestMapping.

    Just tested - works in Spring 4.2!

提交回复
热议问题