Feign-consumer,service-provider 提取公共 API 打包失败

提取公共 API 到单独的模块中

@RequestMapping("/refactor")
public interface IHelloService {

    @GetMapping("/hello3")
    String hello(@RequestParam(value = "name") String name);

    @GetMapping("/hello4")
    String hello(@RequestHeader("name") String name, @RequestHeader(value = "age") Integer age);
}

pom.xml 配置



    
        spring-cloud-aggregation
        com.knife.cloud
        0.0.1-SNAPSHOT
    
    4.0.0

    hello-service-api

    
        
            org.springframework.boot
            spring-boot-starter-web
            provided
        
    

    
        
            
            
                org.apache.maven.plugins
                maven-compiler-plugin
            

            
                
                
                
                    
                    
                
            
        
    

打包之前使用了 spring-boot-maven-plugin 插件,去掉后打包正常

你可能感兴趣的:(Feign-consumer,service-provider 提取公共 API 打包失败)