码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot鸡汤(注解集合二)

时间:2017-12-22 16:35:52      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:otn   eth   not   highlight   long   请求   control   ble   list   

1.@NotNull :属性值不为空
2.@Profiles

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

 3.@PathVariable是用来获得请求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鸡汤(注解集合二)

标签:otn   eth   not   highlight   long   请求   control   ble   list   

原文地址:http://www.cnblogs.com/MaxElephant/p/8086511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!