前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。
PS:springcloud系列文章见:springcloud 系列,一看就会 。
在此,只是记录细碎知识点。
1. 简化注解的使用:@PostMapping @PutMapping @DeleteMapping @PatchMapping 、@GetMapping
@GetMapping("/seeName")
此注解等价于:
@RequestMapping(value = "/seeName", method = RequestMethod.GET)
用法如:
2.@Bean 是一个方法注解。实例化一个Bean,并以该方法的名称命名。如:
import org.springframework.context.annotation.Bean;
...@Beanpublic RestTemplate restTemplate(){return new RestTemplate();}
等价于:
RestTemplate restTemplate = new RestTemplate();
3.
未完,待更新...