SpringBoot鸡汤(注解集合二)

Posted 大象

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot鸡汤(注解集合二)相关的知识,希望对你有一定的参考价值。

[email protected] :属性值不为空
[email protected]

@Configuration  
@Profile("production")  
public class ProductionConfiguration {  
// ...  
}  

 [email protected]是用来获得请求url中的动态参数的
例子:

@RestController
@RequestMapping(value=”/users”)
public class MyRestController {
    @RequestMapping(value=”/{user}”, method=RequestMethod.GET)
    public User getUser(@PathVariable Long user) {
    // …
    }
    @RequestMapping(value=”/{user}/customers”, method=RequestMethod.GET)
    List getUserCustomers(@PathVariable Long user) {
    // …
    }
    @RequestMapping(value=”/{user}”, method=RequestMethod.DELETE)
    public User deleteUser(@PathVariable Long user) {
    // …
    }
}

 



以上是关于SpringBoot鸡汤(注解集合二)的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot注解集合

SpringBoot

Springboot注解整理 二《自定义注解》

Springboot使用MatrixVariable 注解

springboot使用@data注解,减少不必要代码

最全的SpringBoot注解