本文整理匯總了Java中org.springframework.http.HttpStatus.I_AM_A_TEAPOT屬性的典型用法代碼示例。如果您正苦於以下問題:Java HttpStatus.I_AM_A_TEAPOT屬性的具體用法?Java HttpStatus.I_AM_A_TEAPOT怎麽用?Java HttpStatus.I_AM_A_TEAPOT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.springframework.http.HttpStatus
的用法示例。
在下文中一共展示了HttpStatus.I_AM_A_TEAPOT屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addNewEats
@GetMapping(path="/addNewEats") // Map ONLY GET Requests
@ResponseBody
public ResponseEntity<Object> addNewEats (@RequestParam String email
, @RequestParam String numServings
, @RequestParam String foodName) {
int s;
try {
s = Integer.parseInt(numServings);
} catch (NumberFormatException e ) {
return new ResponseEntity<>("Number of servings is invalid", HttpStatus.NOT_ACCEPTABLE);
}
if (userRepository.findByEmail(email) == null) {
return new ResponseEntity<>("Email does not exist", HttpStatus.NOT_ACCEPTABLE);
}
if (foodRepository.findByFoodName(foodName) == null) {
return new ResponseEntity<>(foodName + " does not exist", HttpStatus.NOT_ACCEPTABLE);
}
if (email.equals("[email protected]")) {
return new ResponseEntity<>("[email protected] TERMINATION SCHEDULED. NUTRITIONAL MAINTENANCE IRRELLEVANT", HttpStatus.I_AM_A_TEAPOT);
}
Eats eats = new Eats(userRepository.findByEmail(email), s, foodRepository.findByFoodName(foodName));
eatsRepository.save(eats);
return new ResponseEntity<>("Eat transaction added", HttpStatus.OK);
}
示例2: coffee
@ApiOperation(value = "HTCPCP Implementation", notes = "HTCPCP", hidden = true)
@RequestMapping(path = "/coffee", method = RequestMethod.GET)
public ResponseEntity<String> coffee() {
StatusJSON json = new StatusJSON("I'm a teapot \u2615");
return new ResponseEntity<>(json.toString(), HttpStatus.I_AM_A_TEAPOT);
}