SpringCloud4


架构

约定 > 配置 > 编码
先写pom,xml,yml,sql,
然后写dao,写Mapper,Service,Controller

起步

用上面的方法建立一个Restful风格的服务端生产者,然后我们准备建立消费者,这里的消费者就不应该有Service了,你只需要使用RestTemplate即可

RestTemplate

是spring提供的专门针对rest客户端的高度抽象模版,

1
2
3
4
5
6
7
@Configuration
public class ConfigBean{
@Bean
public RestTemplate getRestTemplate(){
return new RestTemplate();
}
}

文章作者: fightinggg
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 fightinggg !
  目录