Hendrik Jungnitsch
2022-09-30 c66917c237c5d5136d9461da09e1f9f9e1b4bce9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package de.gedoplan.seminar.sbt.di.exercise;
 
import org.springframework.context.annotation.Configuration;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.method.HandlerTypePredicate;
import org.springframework.web.servlet.config.annotation.PathMatchConfigurer;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
 
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
 
    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        configurer.addPathPrefix("/api", HandlerTypePredicate.forAnnotation(RestController.class));
    }
 
}